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

A017572
(12n+4)^4.
0
256, 65536, 614656, 2560000, 7311616, 16777216, 33362176, 59969536, 100000000, 157351936, 236421376, 342102016, 479785216, 655360000, 875213056, 1146228736, 1475789056, 1871773696, 2342560000
OFFSET
0,1
FORMULA
a(0)=256, a(1)=65536, a(2)=614656, a(3)=2560000, a(4)=7311616, a(n)=5*a(n-1)- 10*a(n-2)+10*a(n-3)-5*a(n-4)+a(n-5). - Harvey P. Dale, Mar 08 2013
MATHEMATICA
(12*Range[0, 30]+4)^4 (* or *) LinearRecurrence[{5, -10, 10, -5, 1}, {256, 65536, 614656, 2560000, 7311616}, 30] (* Harvey P. Dale, Mar 08 2013 *)
CROSSREFS
Sequence in context: A205173 A205416 A229103 * A189270 A016748 A189623
KEYWORD
nonn,easy
AUTHOR
STATUS
approved