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

A016792
a(n) = (3*n+2)^4.
9
16, 625, 4096, 14641, 38416, 83521, 160000, 279841, 456976, 707281, 1048576, 1500625, 2085136, 2825761, 3748096, 4879681, 6250000, 7890481, 9834496, 12117361, 14776336, 17850625, 21381376, 25411681, 29986576, 35153041, 40960000, 47458321, 54700816, 62742241, 71639296
OFFSET
0,1
FORMULA
From Ilya Gutkovskiy, Jun 16 2016: (Start)
G.f.: (16 + 545*x + 1131*x^2 + 251*x^3 + x^4)/(1 - x)^5.
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5). (End)
From Amiram Eldar, Mar 31 2022: (Start)
a(n) = A016789(n)^4 = A016790(n)^2.
Sum_{n>=0} 1/a(n) = PolyGamma(3, 2/3)/486. (End)
MATHEMATICA
Table[(3n+2)^4, {n, 0, 100}] (* Mohammad K. Azarian, Jun 15 2016 *)
LinearRecurrence[{5, -10, 10, -5, 1}, {16, 625, 4096, 14641, 38416}, 30] (* Harvey P. Dale, Aug 02 2018 *)
PROG
(Magma) [(3*n+2)^4 : n in [0..30]]; // Vincenzo Librandi, Sep 29 2011
CROSSREFS
Subsequence of A000583.
Sequence in context: A266129 A174336 A135786 * A077204 A159745 A091496
KEYWORD
nonn,easy
AUTHOR
STATUS
approved