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.

User: John Elias

John Elias's wiki page.

John Elias has authored 1 sequences.

A332243 Starhex honeycomb numbers: a(n) = 13 + 60*n + 60*n^2.

Original entry on oeis.org

13, 133, 373, 733, 1213, 1813, 2533, 3373, 4333, 5413, 6613, 7933, 9373, 10933, 12613, 14413, 16333, 18373, 20533, 22813, 25213, 27733, 30373, 33133, 36013, 39013, 42133, 45373, 48733, 52213, 55813, 59533, 63373, 67333, 71413, 75613, 79933, 84373
Offset: 0

Author

John Elias, Feb 07 2020

Keywords

Examples

			Example: a(2) = 13 + 60*2 + 60*2^2 = 373.
Illustration of initial terms:
.                               0
.                            0 0 0 0
.                             0 0 0
.                      0     0 0 0 0     0
.                   0 0 0 0 * * 0 * * 0 0 0 0
.                    0 0 0 * * * * * * 0 0 0
.                   0 0 0 0 * * 0 * * 0 0 0 0
.                      0 * * 0 0 0 0 * * 0
.                       * * * 0 0 0 * * *
.                      0 * * 0 0 0 0 * * 0
.                   0 0 0 0 * * 0 * * 0 0 0 0
.                    0 0 0 * * * * * * 0 0 0
.    0              0 0 0 0 * * 0 * * 0 0 0 0
. 0 * * 0              0     0 0 0 0     0
.  * 0 *                      0 0 0
. 0 * * 0                    0 0 0 0
.    0                          0
.
.    13                         133
		

References

  • M. Gardner, Time Travel and Other Mathematical Bewilderments. Freeman, NY, 1988, p. 20.

Crossrefs

Subsequence of A082369: cf. formula.

Programs

Formula

a(n) = 12*(5*n*(n + 1) + 1) + 1.
From Stefano Spezia, Feb 07 2020: (Start)
O.g.f.: (13 + 94*x + 13*x^2)/(1 - x)^3.
E.g.f.: exp(x)*(13 + 120*x + 60*x^2).
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-2) for n > 2. (End)
a(n) = A082369(A001844(n)). - M. F. Hasler, Jun 09 2023