cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A273367 Numbers k such that 10*k+6 is a perfect square.

Original entry on oeis.org

1, 3, 19, 25, 57, 67, 115, 129, 193, 211, 291, 313, 409, 435, 547, 577, 705, 739, 883, 921, 1081, 1123, 1299, 1345, 1537, 1587, 1795, 1849, 2073, 2131, 2371, 2433, 2689, 2755, 3027, 3097, 3385, 3459, 3763, 3841, 4161, 4243, 4579
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A033583 (perfect squares ending in 0 in base 10 with final 0 removed).

Programs

Formula

a(2n) = 10*n^2 - 8*n + 1.
a(2n+1) = 10*n^2 + 8*n + 1.
G.f.: (x^4+2x^3+14x^2+2x+1)/((1-x)^3*(1+x)^2).
a(n) = a(n-1) + 2*a(n-2) - 2*a(n-3) - a(n-4) + a(n-5). - G. C. Greubel, May 20 2016