A017230 a(n) = (9*n + 5)^10.
9765625, 289254654976, 41426511213649, 1125899906842624, 13422659310152401, 97656250000000000, 511116753300641401, 2113922820157210624, 7326680472586200649, 22130157888803070976, 59873693923837890625
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..10000
- Index entries for linear recurrences with constant coefficients, signature (11, -55, 165, -330, 462, -462, 330, -165, 55, -11, 1).
Programs
-
Magma
[(9*n+5)^10: n in [0..15]]; // Vincenzo Librandi, Jul 24 2011
-
Mathematica
(9*Range[0,20]+5)^10 (* Harvey P. Dale, Jun 16 2017 *)