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.

A154873 Numbers n such that n^5 contains every digit exactly 3 times.

Original entry on oeis.org

643905, 680061, 720558, 775113, 840501, 878613, 984927
Offset: 1

Views

Author

Zhining Yang, Jan 16 2009

Keywords

Comments

a(5) is also the number of A074205

Examples

			840501^5=419460598737334268928156702501, which contains exactly 3 times of each digit 0-9. Total 7 terms
		

Crossrefs

Programs

  • Mathematica
    Select[Range[630972,999978],Union[DigitCount[#^5]]=={3}&] (* Harvey P. Dale, May 01 2021 *)