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.

A084674 Products of the digits of e excluding 0.

Original entry on oeis.org

2, 14, 14, 112, 224, 1792, 1792, 14336, 28672, 229376, 917504, 4587520, 41287680, 165150720, 825753600, 1651507200, 4954521600, 24772608000, 74317824000, 445906944000, 891813888000, 7134511104000, 49941577728000, 199766310912000, 1398364176384000
Offset: 1

Views

Author

Cino Hilliard, Jun 29 2003

Keywords

Comments

It is interesting that the first 0 occurs in the 14th place of e and the 32nd place in Pi.

Examples

			a(2) = 14 because, e to two places being 2.7, we have 2 * 7 = 14.
a(3) = 14 because e to three places is 2.71.
a(4) = 112 because e to four places is 2.718 and 2 * 7 * 1 * 8 = 112.
		

Crossrefs

Cf. A074850.

Programs

  • Mathematica
    Rest[FoldList[Times,1,Select[RealDigits[E,10,30][[1]],#!=0&]]] (* Harvey P. Dale, Jan 23 2015 *)
  • PARI
    etorial(n) = { default(realprecision,10000); p = exp(1)/10; default(realprecision,28); for(j=1,n, eitor=1; e1=p; for(x=1,j, d = e1*10; d1=floor(d); if(d1<>0,eitor*=d1); e1 = frac(d); ); print1(eitor",") ) }

Extensions

Corrected and extended by Harvey P. Dale, Jan 23 2015