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!)
A208277 Smallest number of multiplicative persistence n in factorial base. 3
0, 2, 5, 633, 443153013 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n) exists for all n, unlike (conjecturally) its decimal equivalent A003001. In particular, with k = a(n-1), a(n) <= k * k! + (k-1)! + ... + 2! + 1! < (a(n-1)+1)! for n > 1. Diamond & Reidpath ask if this upper bound can be improved.
a(5) <= 255429978433810461138446192454297813.
LINKS
M. R. Diamond and D. D. Reidpath, A counterexample to conjectures by Sloane and Erdos concerning the persistence of numbers, Journal of Recreational Mathematics 29:2 (1998), pp. 89-92.
EXAMPLE
5 = 1*1!+2*2!, and so is 21 in factorial base; the product of its digits is 2*1 = 10_! and the product of its digits in factorial base is 0*1 = 0, so 5 has multiplicative persistence 2. Since it is the smallest, a(2) = 5.
633 = 51111_! -> 21_! -> 10_! -> 0_! is the least chain of length 3 and so a(3) = 633.
PROG
(PARI) pr(n)=my(k=1, s=1); while(n, s*=n%k++; n\=k); s
persist(n)=my(t); while(n>1, t++; n=pr(n)); t
a(n)=my(k=0); while(persist(k)!=n, k++); k \\ Charles R Greathouse IV, Jan 21 2013
CROSSREFS
Sequence in context: A037063 A068105 A065588 * A131748 A240768 A212590
KEYWORD
nonn,base,more
AUTHOR
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 26 15:35 EDT 2024. Contains 372003 sequences. (Running on oeis4.)