login
A046189
Octagonal pentagonal numbers.
4
0, 1, 176, 1575425, 234631320, 2098015778145, 312461813932000, 2793956983975264801, 416109772078405066376, 3720751630955537773670465, 554139209013308662750166160, 4954977037463529073741814611905, 737954942591533222733596372781560, 6598612290464985405278051366305034401
OFFSET
0,3
COMMENTS
Octagonal numbers that are one-eighth of another octagonal number. - Kelvin Voskuijl, Jun 19 2025
REFERENCES
Elena Deza and Michel Marie Deza, Figurate numbers, World Scientific Publishing (2012), page 40.
LINKS
Eric Weisstein's World of Mathematics, Octagonal Pentagonal Number.
FORMULA
From Ant King, Dec 16 2011: (Start)
a(n) = 1331714*a(n-2) - a(n-4) + 249696.
a(n) = a(n-1) + 1331714*a(n-2) - 1331714*a(n-3) - a(n-4) + a(n-5).
a(n) = (1/96)*((11-6*sqrt(2)*(-1)^n)*(1+sqrt(2))^(8*n-6)+(11+6*sqrt(2)*(-1)^n)*(1-sqrt(2))^(8*n-6)-18).
a(n) = floor(1/96*(11-6*sqrt(2)*(-1)^n)*(1+sqrt(2))^(8*n-6)).
G.f.: x*(1+175*x+243535*x^2+5945*x^3+40*x^4)/((1-x)*(1-1154*x+x^2)*(1+1154*x+x^2)).
Limit_{n->oo} a(2n+1)/a(2n) = (1/49)*(219073+154908*sqrt(2)).
Limit_{n->oo} a(2n)/a(2n-1) = (1/49)*(3649+2580*sqrt(2)). (End)
MATHEMATICA
LinearRecurrence[{1, 1331714, -1331714, -1, 1}, {1, 176, 1575425, 234631320, 2098015778145}, 11] (* Ant King, Dec 16 2011 *)
PROG
(PARI) Vec(x*(1+175*x+243535*x^2+5945*x^3+40*x^4)/((1-x)*(1-1154*x+x^2)*(1+1154*x+x^2)) + O(x^20), -20) \\ Colin Barker, Jun 23 2015
CROSSREFS
Intersection of A000326 and A000567.
Sequence in context: A159426 A009722 A159442 * A278198 A164843 A268790
KEYWORD
nonn,easy
EXTENSIONS
Initial term 0 inserted by Kelvin Voskuijl, Jun 19 2025
STATUS
approved