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-2 of 2 results.

A378925 Positive numbers whose squares have at most one digit less than 8.

Original entry on oeis.org

1, 2, 3, 7, 9, 17, 83, 2983, 298327
Offset: 1

Views

Author

Zhining Yang, Dec 11 2024

Keywords

Comments

No terms > 298327 with less than 11 digits.
No terms > 298327 with less than 22 digits. - Michael S. Branicky, Dec 11 2024

Examples

			298327 is a term because 298327^2 = 88998998929 has only one digit that is less than 8.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[10^6], Count[IntegerDigits[#^2], _?(#1 < 8 &)] < 2 &]

A378926 Positive numbers whose squares have at most two digits less than 9.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 14, 17, 23, 27, 30, 31, 63, 77, 97, 173, 313
Offset: 1

Views

Author

Zhining Yang, Dec 11 2024

Keywords

Comments

No terms > 313 with less than 16 digits.
No terms > 313 with less than 1040 digits. - Michael S. Branicky, Dec 11 2024

Examples

			313 is a term because 313^2 = 97969 has only two digits that are less than 9.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[10^6], Count[IntegerDigits[#^2], _?(#1 < 9 &)] < 3&]
Showing 1-2 of 2 results.