login
A131093
a(1)=1, a(n) = a(n-1) + sum of odd numbers which are among the first (n-1) terms of the sequence.
6
1, 2, 3, 7, 18, 29, 69, 178, 287, 683, 1762, 2841, 6761, 17442, 28123, 66927, 172658, 278389, 662509, 1709138, 2755767, 6558163, 16918722, 27279281, 64919121, 167478082, 270037043, 642633047, 1657862098, 2673091149
OFFSET
1,2
COMMENTS
a(n) mod 2 = A011655(n+1);
a(n) = a(n-1) + Sum(a(k)*(a(k) mod 2): 1<=k<n), a(1) = 1.
LINKS
Eric Weisstein's World of Mathematics, Odd Number
FORMULA
Empirical g.f.: -x*(x-1)*(x^4+3*x^3+6*x^2+3*x+1) / (x^6-10*x^3+1). - Colin Barker, Mar 29 2013
MATHEMATICA
nxt[{ot_, a_}]:=Module[{x=a+ot}, {If[OddQ[x], ot+x, ot], x}]; NestList[nxt, {1, 1}, 30][[All, 2]] (* Harvey P. Dale, Dec 18 2020 *)
CROSSREFS
Sequence in context: A225747 A058334 A303090 * A359089 A343358 A002864
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jun 14 2007
STATUS
approved