A131751 Numbers that are both centered triangular and centered pentagonal.
1, 31, 1891, 117181, 7263301, 450207451, 27905598631, 1729696907641, 107213302675081, 6645495068947351, 411913480972060651, 25531990325198812981, 1582571486681354344141, 98093900183918770523731, 6080239239916282418127151, 376876738974625591153359601
Offset: 1
Links
- Giovanni Lucca, Circle Chains Inscribed in Symmetrical Lenses and Integer Sequences, Forum Geometricorum, Volume 16 (2016) 419-427.
- Index entries for linear recurrences with constant coefficients, signature (63,-63,1).
Programs
-
Maple
A131751 := proc(n) coeftayl(x*(1-32*x+x^2)/(1-x)/(1-62*x+x^2),x=0,n) ; end: seq(A131751(n),n=1..20) ; # R. J. Mathar, Oct 24 2007
-
Mathematica
LinearRecurrence[{63,-63,1},{1,31,1891},20] (* Harvey P. Dale, Oct 01 2017 *)
Formula
a(n+2) = 62*a(n+1) - a(n) - 30, a(n+1) = 31*a(n) - 15 + sqrt(960*a(n)^2 - 960*a(n)+225).
G.f.: f(z) = a(1)*z+a(2)*z^2+... = z*(1-32*z+z^2)/((1-z)*(1-62*z+z^2)).
Extensions
Corrected and extended by R. J. Mathar, Oct 24 2007
Comments