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

A017068
a(n) = (8*n)^4.
1
0, 4096, 65536, 331776, 1048576, 2560000, 5308416, 9834496, 16777216, 26873856, 40960000, 59969536, 84934656, 116985856, 157351936, 207360000, 268435456, 342102016, 429981696, 533794816, 655360000
OFFSET
0,2
FORMULA
G.f.: -4096*x*(1+x)*(x^2 + 10*x + 1)/(x-1)^5. - R. J. Mathar, Jul 14 2016
MATHEMATICA
(8*Range[0, 20])^4 (* or *) LinearRecurrence[{5, -10, 10, -5, 1}, {0, 4096, 65536, 331776, 1048576}, 30] (* Harvey P. Dale, Aug 16 2016 *)
PROG
(Magma) [(8*n)^4: n in [0..35]]; // Vincenzo Librandi, Jul 11 2011
CROSSREFS
Sequence in context: A272914 A016996 A218527 * A221489 A017260 A027859
KEYWORD
nonn,easy
STATUS
approved