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”).

A258130
Octagonal numbers (A000567) that are the sum of ten consecutive octagonal numbers.
5
1045, 1325345, 1910970885, 2755618515265, 3973599987865685, 5729928426883626945, 8262552817966202013445, 11914595433578836419585185, 17180838352667864150839647765, 24774756989951626526674352316385, 35725182398671892783600265200403845
OFFSET
1,1
FORMULA
G.f.: -95*x*(63*x^2 - 1922*x + 11)/((x - 1)*(x^2 - 1442*x + 1)).
EXAMPLE
1045 is in the sequence because Oct(19) = 1045 = 1+8+21+40+65+96+133+176+225+280 = Oct(1) + ... + Oct(10).
MATHEMATICA
CoefficientList[Series[-95 x (63 x^2 - 1922 x + 11)/((x - 1) (x^2 - 1442 x + 1)), {x, 0, 50}], x] (* G. C. Greubel, Oct 18 2017 *)
LinearRecurrence[{1443, -1443, 1}, {1045, 1325345, 1910970885}, 20] (* Harvey P. Dale, Jul 25 2019 *)
PROG
(PARI) Vec(-95*x*(63*x^2-1922*x+11)/((x-1)*(x^2-1442*x+1)) + O('x^20))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Colin Barker, May 21 2015
STATUS
approved