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.

A054602 a(n) = Sum_{d|3} phi(d)*n^(3/d).

Original entry on oeis.org

0, 3, 12, 33, 72, 135, 228, 357, 528, 747, 1020, 1353, 1752, 2223, 2772, 3405, 4128, 4947, 5868, 6897, 8040, 9303, 10692, 12213, 13872, 15675, 17628, 19737, 22008, 24447, 27060, 29853, 32832, 36003, 39372, 42945, 46728, 50727, 54948, 59397, 64080, 69003, 74172
Offset: 0

Views

Author

N. J. A. Sloane, Apr 16 2000

Keywords

Comments

Every term is the product plus the sum of 3 consecutive numbers. - Vladimir Joseph Stephan Orlovsky, Oct 24 2009
Continued fraction [n,n,n] = (n^2+1)/(n^3+2n) = (n^2+1)/a(n); e.g., [7,7,7] = 50/357. - Gary W. Adamson, Jul 15 2010

Crossrefs

Programs

Formula

a(n) = n^3 + 2*n = A073133(n,3). - Henry Bottomley, Jul 16 2002
G.f.: 3*x*(x^2+1)/(x-1)^4. - Colin Barker, Dec 21 2012
a(n) = ((n-1)^3 + n^3 + (n+1)^3)/3. - David Morales Marciel, Aug 28 2015
From Bernard Schott, Nov 28 2021: (Start)
a(n) = A007531(n+1) + A008585(n) (see 1st comment).
a(n) = 3*A006527(n). (End)
From Elmo R. Oliveira, Aug 09 2025: (Start)
E.g.f.: exp(x)*x*(3 + 3*x + x^2).
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4).
a(n) = A292022(n)/4. (End)

A217873 a(n) = 4*n*(n^2 + 2)/3.

Original entry on oeis.org

0, 4, 16, 44, 96, 180, 304, 476, 704, 996, 1360, 1804, 2336, 2964, 3696, 4540, 5504, 6596, 7824, 9196, 10720, 12404, 14256, 16284, 18496, 20900, 23504, 26316, 29344, 32596, 36080, 39804, 43776, 48004, 52496, 57260, 62304, 67636, 73264, 79196, 85440, 92004
Offset: 0

Views

Author

M. F. Hasler, Oct 13 2012

Keywords

Comments

Occurs as 4th column in the table A142978 of figurate numbers for n-dimensional cross polytope.

Crossrefs

Programs

  • Magma
    [4*n*(n^2+2)/3: n in [0..45]]; // Vincenzo Librandi, Nov 08 2012
  • Mathematica
    Table[4n(n^2 + 2)/3, {n, 0, 39}] (* Alonso del Arte, Oct 22 2012 *)
    LinearRecurrence[{4,-6,4,-1},{0,4,16,44},50] (* Harvey P. Dale, Mar 16 2015 *)
  • Maxima
    makelist(4*n*(n^2+2)/3, n, 0, 41); /* Martin Ettl, Oct 15 2012 */
    
  • PARI
    a(n)=(n^2+2)*n/3*4
    

Formula

a(n) = 4*A006527(n).
From Peter Luschny, Oct 14 2012: (Start)
a(n) = A008412(n)/2.
a(n) = A174794(n+1) - 1.
First differences are in A112087.
Second differences are in A008590 and A022144.
Binomial transformation of (a(n), n > 0) is A082138. (End)
G.f.: 4*x*(1 + x^2)/(x - 1)^4. - R. J. Mathar, Oct 15 2012
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4), a(0)=0, a(1)=4, a(2)=16, a(3)=44. - Harvey P. Dale, Mar 16 2015
From Elmo R. Oliveira, Aug 09 2025: (Start)
E.g.f.: 4*exp(x)*x*(3 + 3*x + x^2)/3.
a(n) = A292022(n)/3. (End)
Showing 1-2 of 2 results.