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.

A199997 Composite numbers whose multiplicative persistence is 7.

Original entry on oeis.org

68889, 68898, 68988, 69888, 86889, 86898, 86988, 88689, 88698, 88869, 88896, 88968, 88986, 89688, 89868, 89886, 96888, 98688, 98868, 98886, 168889, 168898, 168988, 169888, 186898, 186988, 188689, 188698, 188896, 188968, 188986, 189688, 189868, 189886, 196888
Offset: 1

Views

Author

Jaroslav Krizek, Nov 13 2011

Keywords

Comments

Complement of A046507 with respect to A046516.

Examples

			68889 -> [ 27648 ][ 2688 ][ 768 ][ 336 ][ 54 ][ 20 ][ 0 ] -> one digit in seven steps.
		

Crossrefs

Cf. A046507 (primes whose multiplicative persistence is 7).

Programs

  • Mathematica
    persistence[n_] := Module[{cnt = 0, k = n}, While[k > 9, cnt++; k = Times @@ IntegerDigits[k]]; cnt]; Select[Range[300000], ! PrimeQ[#] && persistence[#] == 7 &] (* T. D. Noe, Nov 23 2011 *)