A017290 a(n) = (10*n + 1)^10.
1, 25937424601, 16679880978201, 819628286980801, 13422659310152401, 119042423827613001, 713342911662882601, 3255243551009881201, 12157665459056928801, 38941611811810745401, 110462212541120451001
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
[(10*n+1)^10: n in [0..10]]; // Vincenzo Librandi, Jul 30 2011
-
Maple
A017290:=n->(10*n+1)^10; seq(A017290(n), n=0..10); # Wesley Ivan Hurt, Jan 29 2014
-
Mathematica
(10Range[0,10]+1)^10 (* Harvey P. Dale, Feb 18 2011 *)