OFFSET
0,2
LINKS
Matthew House, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (12,-66,220,-495,792,-924,792,-495,220,-66,12,-1).
FORMULA
a(n) = Sum_{k=0..11} binomial(11,k)*(12*n)^k. - Robert Israel, Jul 28 2015
MAPLE
seq((12*n+1)^11, n=0..100); # Robert Israel, Jul 28 2015
MATHEMATICA
(12*Range[0, 15] + 1)^11 (* Paolo Xausa, Dec 18 2025 *)
PROG
(PARI) vector(20, n, n--; (12*n+1)^11) \\ Michel Marcus, Jul 28 2015
(Magma) [(12*n+1)^11: n in [0..12]]; // Vincenzo Librandi, Jul 29 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved
