A220082 Numbers k such that 10*k-1 is a square.
1, 5, 17, 29, 53, 73, 109, 137, 185, 221, 281, 325, 397, 449, 533, 593, 689, 757, 865, 941, 1061, 1145, 1277, 1369, 1513, 1613, 1769, 1877, 2045, 2161, 2341, 2465, 2657, 2789, 2993, 3133, 3349, 3497, 3725, 3881, 4121, 4285, 4537, 4709, 4973, 5153, 5429, 5617, 5905
Offset: 1
Links
- Bruno Berselli, Table of n, a(n) for n = 1..1000
- Index entries for linear recurrences with constant coefficients, signature (1,2,-2,-1,1).
Crossrefs
Programs
-
Magma
[n: n in [1..6000] | IsSquare(10*n-1)]; /* or (see the first comment): */ [1] cat [m*(10*m+6)+1: m in [-n,n], n in [1..24]];
-
Magma
I:=[1,5,17,29,53]; [n le 5 select I[n] else Self(n-1) +2*Self(n-2)-2*Self(n-3)-Self(n-4)+Self(n-5): n in [1..60]]; // Vincenzo Librandi, Aug 18 2013
-
Maple
A220082:=proc(q) local n; for n from 1 to q do if type(sqrt(10*n-1), integer) then print(n); fi; od; end: A220082(1000); # Paolo P. Lava, Feb 19 2013
-
Mathematica
Select[Range[0, 6000], IntegerQ[Sqrt[10 # - 1]] &] CoefficientList[Series[(1 + 4 x + 10 x^2 + 4 x^3 + x^4) / ((1 + x)^2 (1 - x)^3), {x, 0, 50}], x] (* Vincenzo Librandi, Aug 18 2013 *) LinearRecurrence[{1,2,-2,-1,1},{1,5,17,29,53},50] (* Harvey P. Dale, Nov 19 2023 *)
Comments