A204518 Numbers such that floor(a(n)^2 / 6) is a square.
0, 1, 2, 3, 5, 10, 27, 49, 98, 267, 485, 970, 2643, 4801, 9602, 26163, 47525, 95050, 258987, 470449, 940898, 2563707, 4656965, 9313930, 25378083, 46099201, 92198402, 251217123, 456335045, 912670090, 2486793147, 4517251249, 9034502498, 24616714347
Offset: 1
Links
- Index entries for linear recurrences with constant coefficients, signature (0,0,10,0,0,-1).
Crossrefs
Programs
-
PARI
b=6;for(n=0,2e9,issquare(n^2\b) & print1(n","))
-
PARI
concat(0, Vec(-x^2*(x+1)*(3*x^4+7*x^3-2*x^2-x-1)/(x^6-10*x^3+1) + O(x^100))) \\ Colin Barker, Sep 18 2014
Formula
a(n) = sqrt(A055851(n)).
From Colin Barker, Sep 18 2014: (Start)
a(n) = 10*a(n-3) - a(n-6) for n > 7.
G.f.: -x^2*(x+1)*(3*x^4 + 7*x^3 - 2*x^2 - x - 1) / (x^6-10*x^3+1). (End)
Extensions
More terms from Colin Barker, Sep 18 2014
Comments