login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A136650
Self-convolution of A006125(n) = 2^{n(n-1)/2}.
0
1, 2, 5, 20, 148, 2208, 67904, 4264960, 541216768, 137984868352, 70507295670272, 72128242290524160, 147646152060442771456, 604610628447525580832768, 4952364915780360673188380672, 81134591384874923825347187179520
OFFSET
0,2
FORMULA
a(n) = Sum_{k=0..n} 2^{ k(k-1)/2 + (n-k)(n-k-1)/2 }.
PROG
(PARI) a(n)=sum(k=0, n, 2^(k*(k-1)/2 + (n-k)*(n-k-1)/2))
CROSSREFS
Sequence in context: A297629 A118181 A140988 * A229662 A111885 A159320
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 16 2008
STATUS
approved