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.

A016970 a(n) = (6*n + 5)^2.

Original entry on oeis.org

25, 121, 289, 529, 841, 1225, 1681, 2209, 2809, 3481, 4225, 5041, 5929, 6889, 7921, 9025, 10201, 11449, 12769, 14161, 15625, 17161, 18769, 20449, 22201, 24025, 25921, 27889, 29929, 32041, 34225, 36481, 38809, 41209, 43681, 46225, 48841, 51529
Offset: 0

Views

Author

Keywords

Comments

The product of 4 successive terms of an arithmetic progression + square of the common difference is a square: a(n) = the square arising as the sum of first four terms of an arithmetic progression + n^2 where 1 is the first term and n is the common difference. a(1) = 25 = 1*2*3*4+1 a(2) = 121 = 1*3*5*7 +2^2 a(3) = 289 = 1*4*7*10 + 3^2, etc. - Amarnath Murthy, Mar 25 2004
If Y is a fixed 2-subset of a (6n+1)-set X then a(n-1) is the number of 3-subsets of X intersecting Y. - Milan Janjic, Oct 21 2007
Sequence found by reading the line from 25 in the direction 25, 121,... in the square spiral whose vertices are the generalized 20-gonal numbers. - Omar E. Pol, Jul 28 2016

Crossrefs

Cf. A016969 (6*n+5), A086731, A174371.

Programs

  • GAP
    List([0..40],n->(6*n+5)^2); # Muniru A Asiru, Dec 06 2018
    
  • Magma
    [(6*n+5)^2: n in [0..50]]; // Vincenzo Librandi, May 07 2011
    
  • Maple
    [(6*n+5)^2$n=0..40]; # Muniru A Asiru, Dec 06 2018
  • Mathematica
    Array[(6 # + 5)^2 &, 38, 0] (* or *)
    CoefficientList[Series[(-25 - 46 x - x^2)/(x - 1)^3, {x, 0, 37}], x] (* Michael De Vlieger, Dec 06 2018 *)
    CoefficientList[Series[E^x (25 + 96 x + 36 x^2), {x, 0, 50}], x]*Table[n!, {n, 0, 50}] (* Stefano Spezia, Dec 07 2018 *)
  • PARI
    a(n)=(6*n+5)^2 \\ Charles R Greathouse IV, Jul 28 2016
    
  • Sage
    s=((25+46*x+x^2)/(1-x)^3).series(x, 20); s.coefficients(x, sparse=False) # G. C. Greubel, Dec 07 2018

Formula

G.f.: (25 + 46*x + x^2) / (1-x)^3. - R. J. Mathar, Mar 10 2011
a(n) = 24 * A000326(n+1) + 1. - Jean-Bernard François, Oct 12 2014
a(n) = 6*A033579(n+1) + 1. - Miquel Cerda, Jul 28 2016
E.g.f.: exp(x)*(25 + 96*x + 36*x^2). - Stefano Spezia, Dec 07 2018
a(n) = A003215(3*n+2) + A002378(3*n+2). - Klaus Purath, Jun 09 2020
Sum_{n>=0} 1/a(n) = A086731. - Amiram Eldar, Nov 17 2020