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.

A046517 Numbers with multiplicative persistence value 8.

Original entry on oeis.org

2677889, 2677898, 2677988, 2678789, 2678798, 2678879, 2678897, 2678978, 2678987, 2679788, 2679878, 2679887, 2687789, 2687798, 2687879, 2687897, 2687978, 2687987, 2688779, 2688797, 2688977, 2689778, 2689787, 2689877
Offset: 1

Views

Author

Patrick De Geest, Sep 15 1998

Keywords

Examples

			2677889 -> [ 338688 ][ 27648 ][ 2688 ][ 768 ][ 336 ][ 54 ][ 20 ][ 0 ] -> one digit in eight steps.
		

Crossrefs

Programs

  • Maple
    mp:= proc(n) option remember;
        if n <= 9 then return 0 fi;
        1+procname(convert(convert(n,base,10),`*`))
    end proc:
    select(mp=8, [$1..4000000]); # Robert Israel, Feb 12 2019
  • Mathematica
    okQ[n_]:=Length[NestWhileList[Times@@IntegerDigits[#]&, n,IntegerLength[ #]>1&]]==9; Select[Range[2700000],okQ]  (* Harvey P. Dale, Jan 29 2011 *)

Extensions

Offset corrected by Robert Israel, Feb 12 2019

A199998 Composite numbers whose multiplicative persistence is 8.

Original entry on oeis.org

2677889, 2677898, 2677988, 2678798, 2678879, 2678897, 2678978, 2678987, 2679788, 2679878, 2679887, 2687789, 2687798, 2687978, 2687987, 2688779, 2689778, 2689787, 2697788, 2697878, 2698778, 2698787, 2698877, 2767889, 2767898, 2767988, 2768798, 2768879, 2768978
Offset: 1

Views

Author

Jaroslav Krizek, Nov 13 2011

Keywords

Comments

Complement of A046508 with respect to A046517.

Examples

			2677889 -> [ 338688 ][ 27648 ][ 2688 ][ 768 ][ 336 ][ 54 ][ 20 ][ 0 ] -> one digit in eight steps.
		

Crossrefs

Cf. A046508 (primes whose multiplicative persistence is 8).
Showing 1-2 of 2 results.