login
A036089
Centered cube numbers: (n+1)^11 + n^11.
5
1, 2049, 179195, 4371451, 53022429, 411625181, 2340123799, 10567261335, 39970994201, 131381059609, 385311670611, 1028320041299, 2535168764725, 5841725563701, 12699321029039, 26241941903791, 51864082352049
OFFSET
0,2
COMMENTS
Never prime, as a(n) = (2*n+1) * (n^10 + 5*n^9 + 25*n^8 + 70*n^7 + 130*n^6 + 166*n^5 + 148*n^4 + 91*n^3 + 37*n^2 + 9*n + 1). - Jonathan Vos Post, Aug 26 2011
LINKS
B. K. Teo and N. J. A. Sloane, Magic numbers in polygonal and polyhedral clusters, Inorgan. Chem. 24 (1985), 4545-4558.
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, Feb 06 2020: (Start)
G.f.: (1 + x)*(1 + 2036*x + 152637*x^2 + 2203488*x^3 + 9738114*x^4 + 15724248*x^5 + 9738114*x^6 + 2203488*x^7 + 152637*x^8 + 2036*x^9 + 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)
PROG
(Magma) [(n+1)^11+n^11: n in [0..20]]; // Vincenzo Librandi, Aug 27 2011
(PARI) Vec((1 + x)*(1 + 2036*x + 152637*x^2 + 2203488*x^3 + 9738114*x^4 + 15724248*x^5 + 9738114*x^6 + 2203488*x^7 + 152637*x^8 + 2036*x^9 + x^10) / (1 - x)^12 + O(x^40)) \\ Colin Barker, Feb 06 2020
KEYWORD
nonn,easy
STATUS
approved