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.

A232662 Numbers n such that n and n^7 have the same set of digits.

Original entry on oeis.org

0, 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 12635940, 26875130, 29851046, 31572460, 36082794, 38625410, 39756810, 42675139, 47025831, 50748936, 58291760, 65279801, 68249735, 76942451, 78952160, 80572614, 100000000, 102359784, 102374865
Offset: 1

Views

Author

Arkadiusz Wesolowski, Nov 27 2013

Keywords

Examples

			{0, 1, 2, 3, 4, 5, 6, 9} - the set of digits of 12635940 and of 12635940^7, so 12635940 is in the sequence.
		

Crossrefs

Programs

  • PARI
    for(n=0, 102374865, if(Set(Vec(Str(n)))==Set(Vec(Str(n^7))), print1(n, ", ")));