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.

A323606 Decimal expansion of 25146/15625.

Original entry on oeis.org

1, 6, 0, 9, 3, 4, 4
Offset: 1

Views

Author

Felix Fröhlich, Jan 19 2019

Keywords

Comments

Equal to the value of 1 international mile in kilometers.

Examples

			1.609344.
		

Crossrefs

Programs

  • PARI
    my(x=25146/15625, d=0); for(n=1, 7, d=floor(x); x=(x-d)*10; print1(d, ", "))