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!)
A110157 a(n) = a(rad(n) - 1) + 1, where rad(n) is the squarefree kernel of n, rad=A007947. 2
0, 1, 2, 3, 2, 3, 4, 5, 2, 3, 4, 5, 4, 5, 6, 7, 2, 3, 4, 5, 4, 5, 6, 7, 4, 3, 4, 3, 6, 7, 8, 9, 2, 3, 4, 5, 4, 5, 6, 7, 4, 5, 6, 7, 6, 7, 8, 9, 4, 5, 4, 5, 4, 5, 4, 5, 6, 7, 8, 9, 8, 9, 10, 5, 2, 3, 4, 5, 4, 5, 6, 7, 4, 5, 6, 7, 6, 7, 8, 9, 4, 3, 4, 5, 6, 7, 8, 9, 6, 7, 8, 9, 8, 9, 10, 11, 4, 5, 6, 3, 4, 5, 6, 7 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
a(n) = a(A075423(n)) + 1;
a(A075426(n)) = n+1 and a(m) < n+1 for m < A075426(n).
LINKS
FORMULA
a(n) < 4 log_2(n) for n > 1. - Charles R Greathouse IV, Aug 08 2013
PROG
(PARI) rad(n)=my(f=factor(n)[, 1]); prod(i=1, #f, f[i])
a(n)=if(n<4, n, 1+a(rad(n)-1)) \\ Charles R Greathouse IV, Aug 08 2013
(Haskell)
a110157 n = genericIndex a110157_list (n-1)
a110157_list = 0 : map ((+ 1) . a110157 . (+ 1)) a075423_list
-- Reinhard Zumkeller, Aug 14 2013
CROSSREFS
Sequence in context: A071487 A124071 A034697 * A178493 A339902 A286581
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jul 14 2005
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)