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

A073014
(n!/2)*sum(k=1,n,(n+k)!/(k!)^3).
0
1, 9, 127, 2835, 93901, 4336878, 266268402, 20961918435, 2057633544961, 246291719185578, 35300219800649134, 5967365133741366446, 1174674087014062487490, 266337973265724541242428
OFFSET
1,2
COMMENTS
a(n) is odd for n = 1,2,3 and if n is of the form 2^m or 2^m+1 (with m>= 2) (i.e. a(n) is odd if n=1,3,4,5,8,9,16,17,32,33,64,65,128,129,256,257...)
PROG
(PARI) a(n)=if(n<0, 0, (n!/2)*sum(k=1, n, (n+k)!/(k!)^3))
CROSSREFS
Sequence in context: A258294 A362776 A365033 * A046754 A203425 A275259
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Aug 03 2002
STATUS
approved