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

A016828
a(n) = (4*n+2)^4.
2
16, 1296, 10000, 38416, 104976, 234256, 456976, 810000, 1336336, 2085136, 3111696, 4477456, 6250000, 8503056, 11316496, 14776336, 18974736, 24010000, 29986576, 37015056, 45212176, 54700816, 65610000, 78074896, 92236816
OFFSET
0,1
FORMULA
a(n) = 16*A016756(n). O.g.f.: -16*(1+76*x+230*x^2+76*x^3+x^4)/(-1+x)^5. - R. J. Mathar, Mar 31 2008
From Ilya Gutkovskiy, Jun 21 2016: (Start)
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5).
Sum_{n>=0} 1/a(n) = Pi^4/1536. (End)
MATHEMATICA
Table[(4n+2)^4, {n, 0, 100}] (* Mohammad K. Azarian, Jun 21 2016 *)
PROG
(Magma) [(4*n+2)^4: n in [0..40]]; // Vincenzo Librandi, Sep 07 2011
CROSSREFS
Sequence in context: A027648 A224105 A224098 * A072161 A173544 A248619
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from R. J. Mathar, Mar 31 2008
STATUS
approved