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!)
A102566 a(n) = {minimal k such that f^k(prime(n)) = 1} where f(m) = (m+1)/2^r, 2^r is the highest power of two dividing m+1. 0
2, 1, 2, 1, 2, 2, 4, 3, 2, 2, 1, 4, 4, 3, 2, 3, 2, 2, 5, 4, 5, 3, 4, 4, 5, 4, 3, 3, 3, 4, 1, 6, 6, 5, 5, 4, 4, 5, 4, 4, 4, 4, 2, 6, 5, 4, 4, 2, 4, 4, 4, 2, 4, 2, 8, 6, 6, 5, 6, 6, 5, 6, 5, 4, 5, 4, 5, 6, 4, 4, 6, 4, 3, 4, 3, 2, 6, 5, 6, 5, 5, 5, 3, 5, 3, 3, 6, 5, 4, 3, 4, 2, 3, 3, 3, 2, 2, 8, 7, 6, 7, 6, 6, 6, 5 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A066195(n+1) is the prime corresponding to the first n in this sequence. - David Wasserman, Apr 08 2008
LINKS
FORMULA
a(n) = A023416(prime(n)) + 1. - David Wasserman, Apr 08 2008
a(n) = A035103(n) + 1. - Filip Zaludek, Nov 19 2016
EXAMPLE
f(f(f(f(17)))) = 1, prime(7) = 17, so a(7) = 4.
prime(16) = 53 = (2*27-1) = (2*(2^2*7-1)-1) = (2*(2^2*(2^3*1-1)-1)-1), has 3 levels, so a(16) = 3.
PROG
(PARI) f(n) = (n+1)/2^(valuation(n+1, 2));
a(n) = {my(k = 1, p = prime(n)); while((q=f(p)) != 1, k++; p = q); k; } \\ Michel Marcus, Nov 20 2016
(PARI) a(n) = my(p=prime(n)); 2 + logint(p, 2) - hammingweight(p); \\ Kevin Ryde, Nov 06 2023
CROSSREFS
Sequence in context: A143179 A349867 A089610 * A328771 A279371 A134156
KEYWORD
nonn,base
AUTHOR
Yasutoshi Kohmoto, Feb 25 2005
EXTENSIONS
More terms from David Wasserman, Apr 08 2008
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 19:49 EDT 2024. Contains 371963 sequences. (Running on oeis4.)