login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A046506 Primes with multiplicative persistence value 6. 3
8867, 23887, 27883, 28387, 28837, 32887, 34487, 34847, 38287, 38447, 43487, 44647, 46447, 47843, 48437, 48473, 49999, 72883, 74843, 78283, 78823, 82387, 82837, 84347, 84437, 87443, 88237, 88327, 94999, 118687, 123887, 126487, 128467 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Multiplicative Persistence
EXAMPLE
8867 -> [ 2688 ][ 768 ][ 336 ][ 54 ][ 20 ][ 0 ] -> one digit in six steps.
MAPLE
filter:= proc(n) local L, i;
L:= convert(convert(n, base, 10), `*`); if L < 10 then return false fi;
for i from 2 to 5 do
L:= convert(convert(L, base, 10), `*`); if L < 10 then return false fi
od;
L:= convert(convert(L, base, 10), `*`); evalb(L < 10)
end proc:
count:= 0: Res:= NULL;
p:= 11:
while count < 100 do
p:= nextprime(p);
if filter(p) then count:= count+1; Res:= Res, p fi
od:
Res; # Robert Israel, Jun 06 2018
CROSSREFS
Sequence in context: A236031 A071564 A031625 * A116242 A116275 A116295
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Sep 15 1998
EXTENSIONS
Offset corrected by Robert Israel, Jun 06 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)