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.

A153288 A triangular sequence designed with row sums 2*3^n with first column A064263.

Original entry on oeis.org

2, 3, 3, 2, 14, 2, 2, 25, 25, 2, 2, 36, 86, 36, 2, 2, 47, 194, 194, 47, 2, 2, 58, 302, 734, 302, 58, 2, 2, 69, 410, 1706, 1706, 410, 69, 2, 2, 80, 518, 3390, 5142, 3390, 518, 80, 2
Offset: 0

Views

Author

Roger L. Bagula, Dec 23 2008

Keywords

Comments

Row sums are:
{2, 6, 18, 54, 162, 486., 1458, 4374., 13122,...}.
Sequence was calculated to the 3^n level by hand.

Examples

			{2},
{3, 3},
{2, 14, 2},
{2, 25, 25, 2},
{2, 36, 86, 36, 2},
{2, 47, 194, 194, 47, 2},
{2, 58, 302, 734, 302, 58, 2},
{2, 69, 410, 1706, 1706, 410, 69, 2},
{2, 80, 518, 3390, 5142, 3390, 518, 80, 2}
		

Crossrefs

Programs

  • Mathematica
    (* first column : A064263*)
    b = {{2}, {3, 3}, {2, 14, 2}, {2, 25, 25, 2}, {2, 36, 86, 36, 2},
    {2, 47, 194, 194, 47, 2}, {2, 58, 302, 734, 302, 58, 2},
    {2, 69, 410, 1706, 1706, 410, 69, 2}, {2, 80, 518, 3390, 5142, 3390, 518, 80, 2}}
    Flatten[b]

A074805 n mod 19 + 1 ("Golden Number").

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8
Offset: 0

Views

Author

Jeremy Gardiner, Sep 08 2002

Keywords

Examples

			a(0) = 0 mod 19 + 1 = 1
		

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1},{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19},84] (* Ray Chandler, Aug 27 2015 *)

Formula

a(n) = n mod 19 + 1
Showing 1-2 of 2 results.