OFFSET
0,1
LINKS
David A. Corneth, Table of n, a(n) for n = 0..9999
Index entries for linear recurrences with constant coefficients, signature (13,-78,286,-715,1287,-1716,1716,-1287,715,-286,78,-13,1).
MAPLE
seq((4*n+3)^12, n=0..12); # G. C. Greubel, Aug 29 2019
MATHEMATICA
(4*Range[13]-1)^12 (* G. C. Greubel, Aug 29 2019 *)
PROG
(PARI) a(n) = (4*n+3)^12 \\ David A. Corneth, Aug 28 2019
(Magma) [(4*n+3)^12: n in [0..12]]; // G. C. Greubel, Aug 29 2019
(Sage) [(4*n+3)^12 for n in (0..12)] # G. C. Greubel, Aug 29 2019
(GAP) List([0..12], n-> (4*n+3)^12); # G. C. Greubel, Aug 29 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved