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.

Showing 1-3 of 3 results.

A067479 Smallest n-digit square starting with 9, or 0 if no such number exists.

Original entry on oeis.org

9, 0, 900, 9025, 90000, 900601, 9000000, 90003169, 900000000, 9000127161, 90000000000, 900001331856, 9000000000000, 90000000369889, 900000000000000, 9000000036988900, 90000000000000000, 900000001801523401
Offset: 1

Views

Author

Amarnath Murthy, Feb 09 2002

Keywords

Crossrefs

Cf. A000290, A035076 (roots), A045792.
Cf. 2: A067472, 3: A067473, 4: A067474, 5: A067475, 6: A067476, 7: A067477, 8: A067478.

Programs

  • PARI
    a(n) = if (n==2, 0, (sqrtint(9*10^(n-1)) + (n-1) % 2)^2); \\ Michel Marcus, Mar 23 2021

Formula

a(n+1) = (floor(sqrt(9*10^n)) + (n mod 2))^2, a(2)=0. - Sascha Kurz, Mar 18 2002
a(2k+1) = 9 * 10^(2k) for k >= 0. - Bernard Schott, Mar 23 2021

Extensions

More terms from Sascha Kurz, Mar 18 2002

A035069 a(n) is root of square starting with digit 2: first term of runs.

Original entry on oeis.org

5, 15, 45, 142, 448, 1415, 4473, 14143, 44722, 141422, 447214, 1414214, 4472136, 14142136, 44721360, 141421357, 447213596, 1414213563, 4472135955, 14142135624, 44721359550, 141421356238, 447213595500, 1414213562374
Offset: 1

Views

Author

Patrick De Geest, Nov 15 1998

Keywords

Crossrefs

Cf. A067472 (squares), A035076 (2..9).

Programs

  • Mathematica
    Table[Ceiling @ Sqrt[2 * 10^n], {n, 1, 24}] (* Amiram Eldar, Oct 08 2019 *)

Formula

a(n) = ceiling(sqrt(2*10^n)).

Extensions

Offset 1 from Michel Marcus, Oct 08 2019

A067477 Smallest n-digit square starting with 7.

Original entry on oeis.org

729, 7056, 70225, 700569, 7001316, 70006689, 700025764, 7000166889, 70000459776, 700001628921, 7000003645504, 70000012293201, 700000047060196, 7000000057996009, 70000000472817424, 700000000779640729
Offset: 3

Views

Author

Amarnath Murthy, Feb 09 2002

Keywords

Crossrefs

Cf. A035074 (roots), A067472-A067479 (2..9).

Programs

  • PARI
    for(n=3,22,a=ceil(sqrt(7*10^(n-1)))^2; print(a))

Formula

a(n) = ceiling(sqrt(7*10^(n-1)))^2, n>2. - Rick L. Shepherd, Feb 18 2002

Extensions

More terms from Rick L. Shepherd, Feb 18 2002
Showing 1-3 of 3 results.