An article by PaulGraham May 2002.
http://www.paulgraham.com/power.html
The idea that 'succinct = powerful' seems, to me, rather flawed... as though running the language through a bzip2 compressor would make it 'more powerful'. I believe that expressive power in a language arises from its ability to (directly) express certain ideas, period. If one language can express every idea that another can express, and utilize them correctly, and adds a few ideas... that's what makes it 'more powerful'.
Higher-level languages have a purpose in increasing the level of abstraction at which a programmer may operate. They allow one to work with higher-level ideas. That this also happens to reduce lines of code in many programs is a happy side-effect. But, if you want succinctness, all you need to do is build a good, turing complete macro system for the language. If all you had was macro-language atop Machine Code, you could become quite succinct without ever once expressing a higher-level idea like an 'unfold'.
This is one of the attractions of ForthLanguage. --IanOsgood
re: bzip2 compressor
Paul Graham himself addresses this idea in the essay:
PaulGraham asks:
"Are there languages that force you to write code in a way that is crabbed and incomprehensible?"
Some would argue that AplLanguage is the quintessential WriteOnlyLanguage. --- DaveVoorhis
"Succinctness" is in the eye of the beholder. Further, you should write code for a team, not for yourself, and thus should have some knowledge of average team WetWare.
See also: LinesOfCode