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.

A046512 Numbers with multiplicative persistence value 3.

Original entry on oeis.org

39, 47, 49, 55, 57, 59, 66, 68, 69, 74, 75, 78, 79, 86, 87, 88, 89, 93, 94, 95, 96, 97, 98, 139, 147, 149, 155, 157, 159, 166, 168, 169, 174, 175, 178, 179, 186, 187, 188, 189, 193, 194, 195, 196, 197, 198, 227, 229, 236, 238, 239, 246, 247, 248, 249, 263, 264
Offset: 1

Views

Author

Patrick De Geest, Sep 15 1998

Keywords

Examples

			239 -> [ 54 ][ 20 ][ 0 ] -> one digit in three 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=3, [$1..1000]); # Robert Israel, Feb 12 2019
  • Mathematica
    mp3Q[n_]:=Length[NestWhileList[Times@@IntegerDigits[#]&,n,#>9&]]==4; Select[Range[300],mp3Q] (* Harvey P. Dale, May 23 2015 *)

Extensions

Offset corrected by Robert Israel, Feb 12 2019

A199993 Composite numbers whose multiplicative persistence is 3.

Original entry on oeis.org

39, 49, 55, 57, 66, 68, 69, 74, 75, 78, 86, 87, 88, 93, 94, 95, 96, 98, 147, 155, 159, 166, 168, 169, 174, 175, 178, 186, 187, 188, 189, 194, 195, 196, 198, 236, 238, 246, 247, 248, 249, 264, 266, 267, 272, 274, 276, 279, 284, 288, 289, 292, 294, 297, 298, 299
Offset: 1

Views

Author

Jaroslav Krizek, Nov 13 2011

Keywords

Comments

Complement of A046503 with respect to A046512.

Examples

			147 -> 1 * 4 * 7 -> [ 28 ] -> 2 * 8 -> [ 16 ] -> 1 * 6 -> [ 6 ] -> one digit in three steps.
		

Crossrefs

Cf. A046503 (primes whose multiplicative persistence is 3).

Programs

  • Mathematica
    Select[Range[300],CompositeQ[#]&&Length[NestWhileList[Times@@ IntegerDigits[ #]&,#,#>9&]] == 4&] (* Harvey P. Dale, Mar 29 2023 *)

Formula

{ A046512 } minus { A046503 }.
Showing 1-2 of 2 results.