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.

A048529 a(n) is the smallest value of m such that A002378(m), the m-th oblong number, contains exactly n 0's.

Original entry on oeis.org

0, 24, 100, 624, 1000, 10001, 10000, 100001, 100000, 1000001, 1000000, 10000001, 10000000, 100000001, 100000000, 1000000001, 1000000000, 10000000001, 10000000000
Offset: 1

Views

Author

Patrick De Geest, May 15 1999

Keywords

Examples

			From _Jesse Sealand_, Oct 05 2019: (Start)
a(1) = 0 since A002378(0) = 0;
a(2) = 24 since A002378(24) = 600;
a(3) = 100 since A002378(100) = 10100;
a(4) = 624 since A002378(624) = 390000, etc.
(End).
		

Crossrefs

Programs

  • Mathematica
    a[n_] := Block[{a = 0}, While[Count[IntegerDigits[a*(a + 1)], 0] != n, ++a]; Return[a]]; a /@ Range[1, 10] (* Julien Kluge, Dec 15 2016 *)

Extensions

a(16)-a(19) from Lars Blomberg, Jun 10 2011
Name edited by Jesse Sealand, Oct 05 2019