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.

A145426 Decimal expansion of Sum_{k>=0} (k!/(k+2)!)^2.

Original entry on oeis.org

2, 8, 9, 8, 6, 8, 1, 3, 3, 6, 9, 6, 4, 5, 2, 8, 7, 2, 9, 4, 4, 8, 3, 0, 3, 3, 3, 2, 9, 2, 0, 5, 0, 3, 7, 8, 4, 3, 7, 8, 9, 9, 8, 0, 2, 4, 1, 3, 5, 9, 6, 8, 7, 5, 4, 7, 1, 1, 1, 6, 4, 5, 8, 7, 4, 0, 0, 1, 4, 9, 4, 0, 8, 0, 6, 4, 0, 1, 7, 4, 7, 6, 6, 7, 2, 5, 7, 8, 0, 1, 2, 3, 9
Offset: 0

Views

Author

R. J. Mathar, Feb 08 2009

Keywords

Examples

			0.28986813369645287294483...
		

References

  • Alexander Apelblat, Tables of Integrals and Series, Harri Deutsch, (1996), 4.1.31.
  • Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 2.19 VallĂ©e's Constant, p. 161.

Crossrefs

Cf. A002388 (Pi^2), A002378 (oblong numbers), A035287, A348670.

Programs

Formula

Equals A002388/3-3 = Sum_{n>=1} 1/A002378(n)^2 = Sum_{n>=2} 1/A035287(n).

A339483 Number of regular polygons that can be drawn with vertices on a centered hexagonal grid with side length n.

Original entry on oeis.org

0, 9, 75, 294, 810, 1815, 3549, 6300, 10404, 16245, 24255, 34914, 48750, 66339, 88305, 115320, 148104, 187425, 234099, 288990, 353010, 427119, 512325, 609684, 720300, 845325, 985959, 1143450, 1319094, 1514235, 1730265, 1968624, 2230800, 2518329, 2832795
Offset: 0

Views

Author

Peter Kagey, Dec 06 2020

Keywords

Comments

The only regular polygons that can be drawn with vertices on the centered hexagonal grid are equilateral triangles and regular hexagons.

Examples

			There are a(2) = 75 regular polygons that can be drawn on the centered hexagonal grid with side length 2: A000537(2) = 9 regular hexagons and A008893(n) = 66 equilateral triangles.
The nine hexagons are:
    * . *       . * .       * * .
   . . . .     * . . *     * . * .
  * . . . *   . . . . .   . * * . .
   . . . .     * . . *     . . . .
    * . *       . * .       . . .
      1           1           7
which are marked with the number of ways to draw the hexagons up to translation.
The 66 equilateral triangles are:
    * . .       * . .       * . .       * . *       * . .       . . .
   * * . .     . . * .     . . . .     . . . .     . . . .     * . . *
  . . . . .   . * . . .   . . . * .   . . * . .   . . . . *   . . . . .
   . . . .     . . . .     * . . .     . . . .     . . . .     . . . .
    . . .       . . .       . . .       . . .       * . .       . * .
     24          14          12          12           2           2
which are marked with the number of ways to draw the triangles up to translation and dihedral action of the hexagon.
		

Crossrefs

Cf. A000537 (regular hexagons), A008893 (equilateral triangles).
Cf. A338323 (cubic grid).

Programs

  • Mathematica
    a[n_] := n*(n+1)*(2*n+1)^2/2; Array[a, 35, 0] (* Amiram Eldar, Jun 20 2025 *)

Formula

a(n) = A000537(n) + A008893(n).
a(n) = (1/2)*(n+1)*n*(2*n+1)^2.
a(n) = 3*A180324(n).
Sum_{n>=1} 1/a(n) = 10 - Pi^2 (A348670). - Amiram Eldar, Jun 20 2025
From Elmo R. Oliveira, Aug 20 2025: (Start)
G.f.: -3*x*(x + 3)*(3*x + 1)/(x - 1)^5.
E.g.f.: exp(x)*x*(2 + x)*(9 + 24*x + 4*x^2)/2.
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5).
a(n) = A185096(n)/4 = A322677(n)/32. (End)
Showing 1-2 of 2 results.