login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A377120
a(n) = number of iterations of x -> 2 x + 3 to reach a nonprime, starting with prime(n) .
5
4, 1, 4, 3, 1, 3, 2, 2, 1, 2, 1, 1, 1, 3, 6, 2, 1, 1, 6, 1, 2, 1, 1, 2, 5, 1, 1, 1, 1, 3, 2, 1, 5, 2, 1, 1, 2, 1, 3, 3, 1, 1, 1, 2, 4, 2, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 1, 4, 1, 2, 1, 5, 1, 1, 1, 1, 2, 1, 2, 2, 1, 1, 1, 2, 2, 1, 3, 1, 2, 1, 1, 1, 1, 2, 1
OFFSET
1,1
COMMENTS
Guide to related sequences:
mapping initial prime sequence
x -> 2x + 1 2 A181697
x -> 2x + 3 2 this sequence
x -> 2x + 5 2 A377510
x -> 2x + 7 2 A377511
x -> 2x - 1 2 A181715
x -> 2x - 3 5 A377512
x -> 2x - 5 11 A377513
x -> 2x - 7 11 A377514
EXAMPLE
prime(1) = 2 -> 7 -> 17 -> 37 -> 77 = 7*11, so a(1) = 4.
MATHEMATICA
Table[p = Prime[n]; c = 1; While[p = 2*p + 3; PrimeQ[p], c++]; c, {n, 200}]
KEYWORD
nonn
AUTHOR
Clark Kimberling, Oct 31 2024
STATUS
approved