A160970 Indices of square numbers that are also 18-gonal numbers.
0, 1, 10, 44, 341, 1495, 11584, 50786, 393515, 1725229, 13367926, 58607000, 454115969, 1990912771, 15426575020, 67632427214, 524049434711, 2297511612505, 17802254205154, 78047762397956, 604752593540525, 2651326409917999, 20543785926172696, 90067050174814010
Offset: 1
Links
- Colin Barker, Table of n, a(n) for n = 1..1000
- Index entries for linear recurrences with constant coefficients, signature (0,34,0,-1).
Programs
-
Mathematica
Join[{0},LinearRecurrence[{0,34,0,-1},{1,10,44,340},23]] (* Ray Chandler, Aug 01 2015 *)
-
PARI
is(n)=ispolygonal(n^2,18) \\ Charles R Greathouse IV, Feb 14 2013
-
PARI
concat(0, Vec(x^2*(x+1)*(x^2+9*x+1)/((x^2-6*x+1)*(x^2+6*x+1)) + O(x^50))) \\ Colin Barker, Jun 24 2015
Formula
a(n) = 34*a(n-2) - a(n-4), n>5. - R. J. Mathar, Oct 04 2009
G.f.: x^2*(x+1)*(x^2 + 9*x + 1)/((x^2 - 6*x + 1)*(x^2 + 6*x + 1)). - Colin Barker, Oct 07 2012
Extensions
0 added in front and extended by R. J. Mathar, Oct 04 2009
Comments