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.

A021892 Decimal expansion of 1/888.

Original entry on oeis.org

0, 0, 1, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6, 1, 2, 6
Offset: 0

Views

Author

Keywords

Examples

			0.001126126126126126... - _David A. Corneth_, Oct 01 2017
		

Programs

  • Mathematica
    realDigitsRecip[888] (* The realDigitsRecip program is at A021200 *)  (* or *) PadRight[{0,0,1},120,{1,2,6}] (* Harvey P. Dale, Oct 04 2024 *)
  • PARI
    a(n) = if(n<=2, (n+1)\3, (1+n%3)!) \\ David A. Corneth, Oct 01 2017