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-4 of 4 results.

A082252 Concatenation of (3n-2), (3n-1) and 3n divided by 3.

Original entry on oeis.org

41, 152, 263, 33704, 43805, 53906, 64007, 74108, 84209, 94310, 104411, 114512, 124613, 134714, 144815, 154916, 165017, 175118, 185219, 195320, 205421, 215522, 225623, 235724, 245825, 255926, 266027, 276128, 286229, 296330, 306431, 316532, 326633, 33367034
Offset: 1

Views

Author

Amarnath Murthy, Apr 11 2003

Keywords

Examples

			a(5) = 131415/3 = 43805.
		

Crossrefs

Programs

  • PARI
    a(n)={fromdigits(concat([digits(3*n-2), digits(3*n-1), digits(3*n)]))/3} \\ Andrew Howroyd, Nov 09 2019

Extensions

Terms a(12) and beyond from Andrew Howroyd, Nov 09 2019

A082253 Concatenation of (5n-4), (5n-3), (5n-2), (5n-1) and 5n divided by 5.

Original entry on oeis.org

2469, 135782, 222426283, 323436384, 424446485, 525456586, 626466687, 727476788, 828486889, 929496990, 1030507091, 1131517192, 1232527293, 1333537394, 1434547495, 1535557596, 1636567697, 1737577798, 1838587899, 19395979820, 20220420620821, 21221421621822
Offset: 1

Views

Author

Amarnath Murthy, Apr 11 2003

Keywords

Examples

			a(3) = 1112131415/5 = 222426283.
		

Crossrefs

Programs

  • PARI
    a(n)={fromdigits(concat(vector(5, k, digits(5*(n-1)+k))))/5} \\ Andrew Howroyd, Nov 09 2019

Extensions

Terms a(12) and beyond from Andrew Howroyd, Nov 09 2019

A082254 Concatenation of (6n-5), (6n-4), (6n-3), (6n-2), (6n-1) and 6n divided by 6.

Original entry on oeis.org

20576, 131516852, 21902526953, 32003537054, 42104547155, 52205557256, 62306567357, 72407577458, 82508587559, 92609597660, 102710607761, 112811617862, 122912627963, 133013638064, 143114648165, 153215658266, 163316516683517, 17184017517684518, 18185018518685519
Offset: 1

Views

Author

Amarnath Murthy, Apr 11 2003

Keywords

Examples

			a(3) = 131415161718/6 = 21902526953.
		

Crossrefs

Programs

  • PARI
    a(n)={fromdigits(concat(vector(6, k, digits(6*(n-1)+k))))/6} \\ Andrew Howroyd, Nov 09 2019

Extensions

Terms a(8) and beyond from Andrew Howroyd, Nov 09 2019

A082256 (Concatenation of 9n-8, 9n-7, 9n-6, 9n-5, 9n-4, 9n-3, 9n-2, 9n-1 and 9n) divided by 9.

Original entry on oeis.org

13717421, 11234681268351302, 21335691369361403, 31436701470371504, 41537711571381605, 51638721672391706, 61739731773401807, 71840741874411908, 81941751975422009, 92042762076432110
Offset: 1

Views

Author

Amarnath Murthy, Apr 11 2003

Keywords

Examples

			a(3) = 192021222324252627/9 = 21335691369361403.
		

Crossrefs

Programs

  • Mathematica
    Table[FromDigits[Flatten[Table[IntegerDigits[9*n -i], {i, 8, 0, -1}]]]/9, {n, 1, 20}] (* Stefan Steinerberger, Dec 30 2007 *)

Extensions

More terms from Stefan Steinerberger, Dec 30 2007
Showing 1-4 of 4 results.