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.

A303274 Decimal expansion of 1200/3937.

Original entry on oeis.org

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

Views

Author

Felix Fröhlich, Apr 20 2018

Keywords

Comments

The value of 1 US survey foot converted to meters.

Examples

			0.30480060960121920243840487680975361951...
		

Crossrefs

Cf. A224234.

Programs

  • Mathematica
    RealDigits[1200/3937, 10, 100][[1]] (* Altug Alkan, Apr 20 2018 *)
  • PARI
    x=1200/3937; for(n=1, 100, d=floor(x); x=(x-d)*10; n>1 && print1(d, ", "))