[go: up one dir, main page]

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

A017644
(12n+10)^4.
1
10000, 234256, 1336336, 4477456, 11316496, 24010000, 45212176, 78074896, 126247696, 193877776, 285610000, 406586896, 562448656, 759333136, 1003875856, 1303210000, 1664966416, 2097273616
OFFSET
0,1
FORMULA
a(0)=10000, a(1)=234256, a(2)=1336336, a(3)=4477456, a(4)=11316496, a(n)=5*a(n-1)-10*a(n-2)+10*a(n-3)-5*a(n-4)+a(n-5). - Harvey P. Dale, Jan 22 2016
MATHEMATICA
(12*Range[0, 20]+10)^4 (* or *) LinearRecurrence[{5, -10, 10, -5, 1}, {10000, 234256, 1336336, 4477456, 11316496}, 20] (* Harvey P. Dale, Jan 22 2016 *)
CROSSREFS
Sequence in context: A017272 A017512 A096968 * A250440 A013857 A091566
KEYWORD
nonn,easy
AUTHOR
STATUS
approved