A094200 a(n) = 16*n^4 + 32*n^3 + 36*n^2 + 20*n + 3.
3, 107, 699, 2547, 6803, 15003, 29067, 51299, 84387, 131403, 195803, 281427, 392499, 533627, 709803, 926403, 1189187, 1504299, 1878267, 2318003, 2830803, 3424347, 4106699, 4886307, 5772003, 6773003, 7898907, 9159699, 10565747
Offset: 0
Links
- Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
Programs
-
Mathematica
Table[16n^4+32n^3+36n^2+20n+3,{n,0,30}] (* or *) LinearRecurrence[ {5,-10,10,-5,1},{3,107,699,2547,6803},30] (* Harvey P. Dale, Jul 23 2013 *)
-
PARI
a(n) = 16*n^4+32*n^3+36*n^2+20*n+3
Formula
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5) for n >= 5. - Harvey P. Dale, Jul 23 2013
Comments