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.

Showing 1-3 of 3 results.

A156572 Squares of the form k^2+(k+23)^2 with integer k.

Original entry on oeis.org

289, 529, 1369, 4225, 13225, 42025, 139129, 444889, 1423249, 4721929, 15108769, 48344209, 160402225, 513249025, 1642275625, 5448949489, 17435353849, 55789022809, 185103876169, 592288777609, 1895184495649, 6288082836025
Offset: 1

Views

Author

Klaus Brockhaus, Feb 11 2009

Keywords

Comments

Square roots of k^2+(k+17)^2 are in A156567, values k are in A118337.

Examples

			4225 = 65^2 is of the form k^2+(k+23)^2 with k = 33: 33^2+56^2 = 4225. Hence 4225 is in the sequence.
		

Crossrefs

Cf. A156567, A156575 (first trisection), A156573 (second trisection), A156574 (third trisection).
Cf. A118337, A156035 (decimal expansion of 3+2*sqrt(2)), A156164 (decimal expansion of 17+12*sqrt(2)), A156571 (decimal expansion of (27+10*sqrt(2))/23), A157472 (decimal expansion of (627+238*sqrt(2))/23^2).

Programs

  • Mathematica
    LinearRecurrence[{1,0,34,-34,0,-1,1}, {289,529,1369,4225,13225,42025,139129}, 30] (* Harvey P. Dale, Mar 21 2020 *)
  • PARI
    {forstep(n=-8, 1800000, [1, 3], if(issquare(a=2*n*(n+23)+529), print1(a, ",")))}
    
  • Sage
    def f(n,p,q): return p*chebyshev_U(n,17) - q*chebyshev_U(n-1,17)
    def a(n):
        if (n%3==0): return -289*bool(n==0) + (1/4)*(529 + 3*f(n/3, 209, 5457))
        elif (n%3==1): return (1/4)*(529 + 3*f((n-1)/3, 209, 1649))
        else: return (1/4)*(529 + 3*f((n-2)/3, 529, 529))
    [a(n) for n in (1..30)] # G. C. Greubel, Jan 04 2022

Formula

a(n) = 34*a(n-3) - a(n-6) - 4232 for n > 6; a(1)=289, a(2)=529, a(3)=1369, a(4)=4225, a(5)=13225, a(6)=42025.
a(n) = A156567(n)^2.
G.f.: x*(289 +240*x +840*x^2 -6970*x^3 +840*x^4 +240*x^5 +289*x^6)/((1-x)*(1 -34*x^3 +x^6)).
Limit_{n -> infinity} a(n)/a(n-3) = 17 + 12*sqrt(2).
Limit_{n -> infinity} a(n)/a(n-1) = ((627 + 238*sqrt(2))/23^2)^2 for n mod 3 = 1.
Limit_{n -> infinity} a(n)/a(n-1) = ((27 + 10*sqrt(2))/23)^2 for n mod 3 = {0, 2}.
a(n) = -289*[n=0] + (529/4) + (3/4)*( f(n/3, 209, 5457)*(n mod 3 = 1) + f((n-1)/3, 209, 1649)*(n mod 3 = 1) + f((n-2)/2, 529, 529)*(n mod 3 = 2) ), where f(n, p, q) = p*ChebyshevU(n, 17) - q*ChebyshevU(n-1, 17). - G. C. Greubel, Jan 04 2022

Extensions

Revised by Klaus Brockhaus, Feb 16 2009
G.f. corrected, third comment and cross-references edited by Klaus Brockhaus, Sep 22 2009

A156573 a(n) = 34*a(n-1) - a(n-2) - 4232 for n > 2; a(1)=529, a(2)=13225.

Original entry on oeis.org

529, 13225, 444889, 15108769, 513249025, 17435353849, 592288777609, 20120383080625, 683500735959409, 23218904639535049, 788759257008228025, 26794595833640213569, 910227499086759029089, 30920940373116166771225
Offset: 1

Views

Author

Klaus Brockhaus, Feb 11 2009

Keywords

Examples

			a(3) = 34*a(2) - a(1) - 4232 = 34*13225 - 529 - 4232 = 444889.
		

Crossrefs

Second trisection of A156572.
Cf. A008844, A156164 (decimal expansion of 17+12*sqrt(2)), A156574, A156575.

Programs

  • Mathematica
    LinearRecurrence[{35,-35,1}, {529,13225,444889}, 30] (* G. C. Greubel, Jan 04 2022 *)
  • PARI
    {m=14; v=concat([529, 13225], vector(m-2)); for(n=3, m, v[n]=34*v[n-1]-v[n-2]-4232); v}
    
  • Sage
    def a(n): return -529*bool(n==0) + (529/4) + (3/4)*(chebyshev_U(n, 17) - 33*chebyshev_U(n-1, 17))
    [a(n) for n in (1..30)] # G. C. Greubel, Jan 04 2022

Formula

a(n) = 529*(2 + (3 - 2*sqrt(2))*(17 + 12*sqrt(2))^n + (3 + 2*sqrt(2))*(17 - 12*sqrt(2))^n)/8.
a(n) = 529*A008844(n).
G.f.: 529*x*(1 -10*x +x^2)/((1-x)*(1-34*x+x^2)). [corrected by Klaus Brockhaus, Sep 22 2009]
Limit_{n -> infinity} a(n)/a(n-1) = 17+12*sqrt(2).
a(n) = -529*[n=0] + (529/4) + (1587/4)*(ChebyshevU(n, 17) - 33*ChebyshevU(n-1, 17)). - G. C. Greubel, Jan 04 2022

Extensions

Revised by Klaus Brockhaus, Feb 16 2009

A156574 a(n) = 34*a(n-1) - a(n-2) - 4232 for n > 2; a(1)=1369, a(2)=42025.

Original entry on oeis.org

1369, 42025, 1423249, 48344209, 1642275625, 55789022809, 1895184495649, 64380483825025, 2187041265550969, 74295022544903689, 2523843725261170225, 85736391636334879729, 2912513471910124736329, 98939721653307906151225
Offset: 1

Views

Author

Klaus Brockhaus, Feb 11 2009

Keywords

Comments

lim_{n -> infinity} a(n)/a(n-1) = 17+12*sqrt(2).

Examples

			a(3) = 34*a(2) - a(1) - 4232 = 34*42025 - 1369 - 4232 = 1423249.
		

Crossrefs

Third trisection of A156572.
Cf. A156164 (decimal expansion of 17+12*sqrt(2)), A156573, A156575.

Programs

  • Mathematica
    LinearRecurrence[{35,-35,1}, {1369, 42025, 1423249}, 30] (* G. C. Greubel, Jan 04 2022 *)
  • PARI
    {m=14; v=concat([1369, 42025], vector(m-2)); for(n=3, m, v[n]=34*v[n-1]-v[n-2]-4232); v}
    
  • Sage
    def a(n): return -289*bool(n==0) + (529/4) + (3/4)*(209*chebyshev_U(n, 17) - 5457*chebyshev_U(n-1, 17))
    [a(n) for n in (1..30)] # G. C. Greubel, Jan 04 2022

Formula

a(n) = (1058 + (627 - 238*sqrt(2))*(17 + 12*sqrt(2))^n + (627 + 238*sqrt(2))*(17 - 12*sqrt(2))^n)/8.
G.f.: x*(1369 -5890*x +289*x^2)/((1-x)*(1-34*x+x^2)).
a(n) = -289*[n=0] + (529/4) + (3/4)*(209*ChebyshevU(n, 17) - 5457*ChebyshevU(n - 1, 17)). - G. C. Greubel, Jan 04 2022

Extensions

Revised by Klaus Brockhaus, Feb 16 2009
G.f. corrected by Klaus Brockhaus, Sep 22 2009
Showing 1-3 of 3 results.