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-2 of 2 results.

A157324 a(n) = 36*n^2 + n.

Original entry on oeis.org

37, 146, 327, 580, 905, 1302, 1771, 2312, 2925, 3610, 4367, 5196, 6097, 7070, 8115, 9232, 10421, 11682, 13015, 14420, 15897, 17446, 19067, 20760, 22525, 24362, 26271, 28252, 30305, 32430, 34627, 36896, 39237, 41650, 44135, 46692, 49321, 52022
Offset: 1

Views

Author

Vincenzo Librandi, Feb 27 2009

Keywords

Comments

The identity (10368*n^2 + 288*n + 1)^2 - (36*n^2 + n)*(1728*n + 24)^2 = 1 can be written as A157326(n)^2 - a(n)*A157325(n)^2 = 1.
This is the case s=6 of the identity (8*n^2*s^4 + 8*n*s^2 + 1)^2 - (n^2*s^2 + n)*(8*n*s^3 + 4*s)^2 = 1. - Vincenzo Librandi, Jan 26 2012

Crossrefs

Programs

  • Magma
    I:=[37, 146, 327]; [n le 3 select I[n] else 3*Self(n-1)-3*Self(n-2)+1*Self(n-3): n in [1..50]]; // Vincenzo Librandi, Jan 26 2012
    
  • Mathematica
    LinearRecurrence[{3,-3,1},{37,146,327},50] (* Vincenzo Librandi, Jan 26 2012 *)
    Table[36n^2+n,{n,50}] (* Harvey P. Dale, Mar 09 2019 *)
  • PARI
    for(n=1, 40, print1(36*n^2 + n", ")); \\ Vincenzo Librandi, Jan 26 2012

Formula

a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3). - Vincenzo Librandi, Jan 26 2012
G.f.: x*(-37 - 35*x)/(x-1)^3. - Vincenzo Librandi, Jan 26 2012

A157326 a(n) = 10368*n^2 + 288*n + 1.

Original entry on oeis.org

10657, 42049, 94177, 167041, 260641, 374977, 510049, 665857, 842401, 1039681, 1257697, 1496449, 1755937, 2036161, 2337121, 2658817, 3001249, 3364417, 3748321, 4152961, 4578337, 5024449, 5491297, 5978881, 6487201, 7016257
Offset: 1

Views

Author

Vincenzo Librandi, Feb 27 2009

Keywords

Comments

The identity (10368*n^2 + 288*n + 1)^2 - (36*n^2 + n)*(1728*n + 24)^2 = 1 can be written as a(n)^2 - A157324(n)*A157325(n)^2 = 1 (see also second part of the comment at A157324). - Vincenzo Librandi, Jan 26 2012

Crossrefs

Programs

  • Magma
    I:=[10657, 42049, 94177]; [n le 3 select I[n] else 3*Self(n-1)-3*Self(n-2)+1*Self(n-3): n in [1..50]]; // Vincenzo Librandi, Jan 26 2012
    
  • Mathematica
    LinearRecurrence[{3,-3,1},{10657,42049,94177},50] (* Vincenzo Librandi, Jan 26 2012 *)
  • PARI
    for(n=1, 22, print1(10368*n^2 + 288*n + 1", ")); \\ Vincenzo Librandi, Jan 26 2012

Formula

a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3). - Vincenzo Librandi, Jan 26 2012
G.f.: x*(-x^2 - 10078*x - 10657)/(x-1)^3. - Vincenzo Librandi, Jan 26 2012
a(n) = 2*A017533(6n)^2 - 1. - Bruno Berselli, Jan 29 2012
Showing 1-2 of 2 results.