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

A098803
a(n) = n^7 * 7^n.
5
0, 7, 6272, 750141, 39337984, 1313046875, 32934190464, 678223072849, 12089663946752, 193010051319183, 2824752490000000, 38532504363714053, 495958345459089408, 6079641716636816419, 71493870602660352896
OFFSET
0,2
LINKS
Index entries for linear recurrences with constant coefficients, signature (56,-1372,19208,-168070,941192,-3294172,6588344,-5764801).
FORMULA
G.f.: 7*x*(117649*x^6 +2016840*x^5 +2859591*x^4 +828688*x^3 +58359*x^2 +840*x +1) / (7*x -1)^8. - Colin Barker, Apr 30 2013
EXAMPLE
a(1) = 1^7 * 7^1 = 7.
a(2) = 2^7 * 7^2 = 6272.
MATHEMATICA
Table[n^7*7^n, {n, 1, 20}] (* Stefan Steinerberger, Mar 06 2006 *)
PROG
(Magma) [7^n*n^7: n in [0..20]]; // Vincenzo Librandi, Oct 27 2011
(PARI) a(n)=n^7*7^n \\ Charles R Greathouse IV, Oct 07 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Oct 05 2004
EXTENSIONS
More terms from Stefan Steinerberger, Mar 06 2006
Offset changed from 1 to 0 by Vincenzo Librandi, Oct 27 2011
STATUS
approved