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

A017084
a(n) = (8*n + 1)^8.
1
1, 43046721, 6975757441, 152587890625, 1406408618241, 7984925229121, 33232930569601, 111429157112001, 318644812890625, 806460091894081, 1853020188851841, 3936588805702081, 7837433594376961, 14774554437890625
OFFSET
0,2
LINKS
Index entries for linear recurrences with constant coefficients, signature (9, -36, 84, -126, 126, -84, 36, -9, 1).
FORMULA
a(n) = 9*a(n-1) - 36*a(n-2) + 84*a(n-3) - 126*a(n-4) + 126*a(n-5) - 84*a(n-6) + 36*a(n-7) - 9*a(n-8) + a(n-9); a(0)=1, a(1)=43046721, a(2)=6975757441, a(3)=152587890625, a(4)=1406408618241, a(5)=7984925229121, a(6)=33232930569601, a(7)=111429157112001, a(8)=318644812890625. - Harvey P. Dale, Feb 26 2012
MATHEMATICA
(8Range[0, 20]+1)^8 (* or *) LinearRecurrence[{9, -36, 84, -126, 126, -84, 36, -9, 1}, {1, 43046721, 6975757441, 152587890625, 1406408618241, 7984925229121, 33232930569601, 111429157112001, 318644812890625}, 20] (* Harvey P. Dale, Feb 26 2012 *)
PROG
(Magma) [(8*n+1)^8: n in [0..20]]; // Vincenzo Librandi, Jul 11 2011
CROSSREFS
Sequence in context: A186580 A186589 A186581 * A017168 A017384 A017504
KEYWORD
nonn,easy
STATUS
approved