OFFSET
0,2
LINKS
T. D. Noe, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (12,-66,220,-495,792,-924,792,-495,220,-66,12,-1).
FORMULA
From Colin Barker, Aug 04 2019: (Start)
G.f.: x*(128 + 43792327*x + 5240462124*x^2 + 90099630276*x^3 + 429789855348*x^4 + 709564273194*x^5 + 429789855348*x^6 + 90099630276*x^7 + 5240462124*x^8 + 43792327*x^9 + 128*x^10) / (1 - x)^12.
a(n) = 12*a(n-1) - 66*a(n-2) + 220*a(n-3) - 495*a(n-4) + 792*a(n-5) - 924*a(n-6) + 792*a(n-7) - 495*a(n-8) + 220*a(n-9) - 66*a(n-10) + 12*a(n-11) - a(n-12) for n>11.
(End)
MATHEMATICA
Table[128*LegendreP[11, n], {n, 0, 100}] (* T. D. Noe, Mar 27 2012 *)
PROG
(PARI) a(n)=pollegendre(11, n)<<7 \\ Charles R Greathouse IV, Oct 26 2011
(PARI) concat(0, Vec(x*(128 + 43792327*x + 5240462124*x^2 + 90099630276*x^3 + 429789855348*x^4 + 709564273194*x^5 + 429789855348*x^6 + 90099630276*x^7 + 5240462124*x^8 + 43792327*x^9 + 128*x^10) / (1 - x)^12 + O(x^40))) \\ Colin Barker, Aug 04 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Nov 19 2009
STATUS
approved