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.

A219112 Numbers that eventually reach 1 under "x -> sum of 5th power of digits of x".

Original entry on oeis.org

1, 10, 100, 1000, 10000, 100000, 1000000, 1111222, 1112122, 1112212, 1112221, 1121122, 1121212, 1121221, 1122112, 1122121, 1122211, 1211122, 1211212, 1211221, 1212112, 1212121, 1212211, 1221112, 1221121, 1221211, 1222111, 2111122, 2111212, 2111221, 2112112
Offset: 1

Views

Author

Michel Lagneau, Nov 12 2012

Keywords

Examples

			1112122 is in the sequence because 1^5 +1^5+1^5+2^5+1^5 +2^5+2^5 = 100 and 1^5 + 0^5 + 0^5 = 1.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[50000], FixedPoint[Total[IntegerDigits[#]^5]&, #, 10]==1&]