login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A258132
Octagonal numbers (A000567) that are the sum of fifteen consecutive octagonal numbers.
5
4715040, 8463840, 1122749669280, 2015496399840, 267373851637578960, 479974343542849680, 63672943775553479639280, 114302050117965712710960, 15163202176330482896520455040, 27220118818712616412771202880, 3610995292612020914167620625112640
OFFSET
1,1
FORMULA
G.f.: -240*x*(7*x^4 +4*x^3 -449376*x^2 +15620*x +19646)/((x-1)*(x^2 -488*x +1)*(x^2 +488*x +1)).
EXAMPLE
4715040 is in the sequence because Oct(1254) = 4715040 = 300833 + 302736 + 304645 + 306560 + 308481 + 310408 + 312341 + 314280 + 316225 + 318176 + 320133 + 322096 + 324065 + 326040 + 328021 = Oct(317) + ... + Oct(331).
MATHEMATICA
CoefficientList[Series[-240*x*(7*x^4 +4*x^3 -449376*x^2 +15620*x +19646)/((x-1)*(x^2 -488*x +1)*(x^2 +488*x +1)), {x, 0, 50}], x] (* G. C. Greubel, Oct 18 2017 *)
PROG
(PARI) Vec(-240*x*(7*x^4 +4*x^3 -449376*x^2 +15620*x +19646)/((x-1)*(x^2 -488*x +1)*(x^2 +488*x +1)) + O('x^20))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Colin Barker, May 21 2015
STATUS
approved