A016882 (5n+2)^10.
1024, 282475249, 61917364224, 2015993900449, 26559922791424, 205891132094649, 1125899906842624, 4808584372417849, 17080198121677824, 52599132235830049, 144555105949057024, 362033331456891249, 839299365868340224, 1822837804551761449, 3743906242624487424
Offset: 0
Links
- T. D. Noe, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (11, -55, 165, -330, 462, -462, 330, -165, 55, -11, 1).
Programs
-
Maple
A016882:=n->(5*n+2)^10; seq(A016882(n), n=0..30); # Wesley Ivan Hurt, Jan 22 2014
-
Mathematica
Table[(5n+2)^10, {n,0,30}] (* Wesley Ivan Hurt, Jan 22 2014 *)
-
PARI
a(n) = (5*n+2)^10; \\ Michel Marcus, Jan 27 2014