A276601 Values of k such that k^2 + 9 is a triangular number (A000217).
1, 6, 12, 37, 71, 216, 414, 1259, 2413, 7338, 14064, 42769, 81971, 249276, 477762, 1452887, 2784601, 8468046, 16229844, 49355389, 94594463, 287664288, 551336934, 1676630339, 3213427141, 9772117746, 18729225912, 56956076137, 109161928331, 331964339076
Offset: 1
Examples
6 is in the sequence because 6^2+9 = 45, which is a triangular number.
Links
- Colin Barker, Table of n, a(n) for n = 1..1000
- Index entries for linear recurrences with constant coefficients, signature (0,6,0,-1).
Crossrefs
Programs
-
Magma
I:=[1,6,12,37]; [n le 2 select I[n] else 6*Self(n-2) - Self(n-4): n in [1..31]]; // G. C. Greubel, Sep 15 2021
-
Mathematica
CoefficientList[Series[(1+x)*(1+5*x+x^2)/((1+2*x-x^2)*(1-2*x-x^2)), {x, 0, 30}], x] (* Wesley Ivan Hurt, Sep 07 2016 *) LinearRecurrence[{0,6,0,-1}, {1,6,12,37}, 31] (* G. C. Greubel, Sep 15 2021 *)
-
PARI
Vec(x*(1+x)*(1+5*x+x^2) / ((1+2*x-x^2)*(1-2*x-x^2)) + O(x^40))
-
Sage
def P(n): return lucas_number1(n, 2, -1) [(1/4)*(5*P(n+1) - P(n) + (-1)^n*(P(n-1) + 5*P(n-2))) for n in (1..30)] # G. C. Greubel, Sep 15 2021
Formula
a(n) = 6*a(n-2) - a(n-4) for n>4.
G.f.: x*(1+x)*(1+5*x+x^2) / ((1+2*x-x^2)*(1-2*x-x^2)).
a(n) = (1/4)*(5*P(n+1) - P(n) + (-1)^n*(P(n-1) + 5*P(n-2))), where P(n) = A000129(n). - G. C. Greubel, Sep 15 2021