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.

A069140 a(n) = (4n-1)*4n*(4n+1).

Original entry on oeis.org

0, 60, 504, 1716, 4080, 7980, 13800, 21924, 32736, 46620, 63960, 85140, 110544, 140556, 175560, 215940, 262080, 314364, 373176, 438900, 511920, 592620, 681384, 778596, 884640, 999900, 1124760, 1259604, 1404816, 1560780, 1727880, 1906500
Offset: 0

Views

Author

Henry Bottomley, Apr 08 2002

Keywords

Examples

			a(10) = 39*40*41 = 63960.
		

Crossrefs

Programs

  • Mathematica
    Table[64n^3-4n,{n,0,40}] (* or *) LinearRecurrence[{4,-6,4,-1},{0,60,504,1716},40] (* Harvey P. Dale, Dec 24 2012 *)
  • PARI
    a(n)=(4*n-1)*4*n*(4*n+1) \\ Charles R Greathouse IV, Oct 07 2015

Formula

Sum_{i>0} 1/a(i) = log(2)*3/4 - 1/2 = 0.019860..., which is the ratio of the area of the deltoid envelope formed by area bisectors of a triangle to the area of the triangle.
a(n) = 64n^3 - 4n = A007531(4n) = A069072(2n-1).
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4). - Harvey P. Dale, Dec 24 2012
Sum_{n>=1} (-1)^(n+1)/a(n) = 1/2 - log(2)/4 + log(tan(Pi/8))/(2*sqrt(2)). Amiram Eldar, Mar 20 2022