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.

A344104 a(0) = 10; for n > 0, a(n) is a(n-1) multiplied by the number of 0's so far in the sequence.

Original entry on oeis.org

10, 10, 20, 60, 240, 1200, 8400, 75600, 831600, 10810800, 183783600, 3491888400, 73329656400, 1686582097200, 43851134527200, 1227831766761600, 36834953002848000, 1289223355099680000, 51568934203987200000, 2372170973383411200000, 123352890615937382400000
Offset: 0

Views

Author

Jamie Robert Creasey, May 09 2021

Keywords

Comments

This sequence is the multiplicative counterpart to A130232, but the initial term 0 is replaced with 10 (0 obviously results in A000004). The data demonstrates that the number of 0's grows rapidly as a(n) increases, because each term is a multiple of 10, thus adding at least one 0 to successive terms.

Examples

			To calculate a(5), multiply a(4)=240 by the number of 0's present in itself and previous terms, of which there are 5, thus yielding 1200.
a(6) is 1200 multiplied by 7, which is the number of 0's present so far, thus giving 8400.
		

Crossrefs

Programs

Formula

a(n+1) = a(n)*#_0[a(n)...a(0)], where #_0(n) is the number of 0's in n.