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

A228516
Nonlinear recursion : a(n) = a(n-1) + product( a(n-2*i+1) - (-1)^i a(n-2*i), i=1..(n-1)/2 ).
0
0, 1, 2, 5, 12, 29, 152, 3953, 492448, 1038466939, 485738447955340, 901906261391592783534445, 457307375301782078171714403359859659770, 230566622864824019056608840739200225506169862419626347928975335
OFFSET
0,3
COMMENTS
Initial conditions: a(0)=0; a(1)=1;
MATHEMATICA
a[0]:= 0; a[1]:= 1; a[n_Integer]:=a[n]=a[n-1]+ Times@@Table[(a[n-2i+1]-(-1)^i a[n-2i]), {i, 1, (n-1)/2}];
Table[a[n], {n, 0, 13}]
CROSSREFS
Sequence in context: A368984 A324787 A333888 * A101411 A042789 A291253
KEYWORD
nonn
AUTHOR
Olivier Gérard, Aug 24 2013
STATUS
approved