OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (8, -28, 56, -70, 56, -28, 8, -1).
FORMULA
a(0)=0, a(1)=78125, a(2)=10000000, a(3)=170859375, a(4)=1280000000, a(5)=6103515625, a(6)=21870000000, a(7)=64339296875, a(n)=8*a(n-1)- 28*a(n-2)+ 56*a(n-3)-70*a(n-4)+56*a(n-5)-28*a(n-6)+8*a(n-7)-a(n-8). - Harvey P. Dale, May 07 2013
MATHEMATICA
(5*Range[0, 20])^7 (* or *) LinearRecurrence[{8, -28, 56, -70, 56, -28, 8, -1}, {0, 78125, 10000000, 170859375, 1280000000, 6103515625, 21870000000, 64339296875}, 20] (* Harvey P. Dale, May 07 2013 *)
Table[(5 n)^7, {n, 0, 25}] (* Vincenzo Librandi, Apr 10 2017 *)
PROG
(Magma) [(5*n)^7: n in [0..20]]; // Vincenzo Librandi, Apr 10 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved