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

A140151
a(1)=1, a(n)=a(n-1)+n^2 if n odd, a(n)=a(n-1)+ n^5 if n is even.
2
1, 33, 42, 1066, 1091, 8867, 8916, 41684, 41765, 141765, 141886, 390718, 390887, 928711, 928936, 1977512, 1977801, 3867369, 3867730, 7067730, 7068171, 12221803, 12222332, 20184956, 20185581, 32066957, 32067686, 49278054, 49278895
OFFSET
1,2
LINKS
FORMULA
G.f.: x*(-1-32*x-3*x^2-832*x^3+14*x^4-2112*x^5-14*x^6-832*x^7+3*x^8-32*x^9+x^10 )/((1+x)^6*(x-1)^7). [From R. J. Mathar, Feb 22 2009]
MATHEMATICA
a = {}; r = 2; s = 5; Do[k = 0; Do[k = k + (Sin[Pi m/2]^2) m^r + (Cos[Pi m/2]^2) m^s, {m, 1, n}]; AppendTo[a, k], {n, 1, 100}]; a (*Artur Jasinski*)
nxt[{n_, a_}]:={n+1, If[EvenQ[n], a+(n+1)^2, a+(n+1)^5]}; Transpose[ NestList[ nxt, {1, 1}, 30]][[2]] (* Harvey P. Dale, Aug 20 2015 *)
KEYWORD
nonn
AUTHOR
Artur Jasinski, May 12 2008
STATUS
approved