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”).

A110140
Binomial transform of n^n (with interpolated zeros).
0
1, 1, 2, 4, 11, 31, 103, 351, 1321, 5113, 21201, 90465, 406621, 1879021, 9051309, 44754061, 229059633, 1201271409, 6488957521, 35853950609, 203303964341, 1177299817093, 6976709899853, 42161309544541, 260154190137865
OFFSET
0,3
COMMENTS
Binomial transform of 1,0,1,0,4,0,27,....
FORMULA
a(n)=sum{k=0..n, C(n, k)(k/2)^(k/2)*(1+(-1)^k)/2}
MATHEMATICA
Table[1 + Sum[Binomial[n, k]*(k/2)^(k/2)*(1 + (-1)^k)/2, {k, 1, n}], {n, 0, 30}] (* Vaclav Kotesovec, Oct 30 2017 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jul 13 2005
STATUS
approved