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!)
A335302 a(n) = prime(n+1) mod (2^k) where k is the least positive integer such that floor(prime(n)/(2^k)) = floor(prime(n+1)/(2^k)) and prime(n) denotes the n-th prime number. 2
1, 5, 3, 11, 5, 17, 3, 7, 13, 3, 37, 9, 3, 7, 21, 11, 5, 67, 7, 9, 7, 19, 9, 33, 5, 3, 11, 5, 17, 15, 131, 9, 3, 21, 3, 13, 35, 7, 13, 19, 5, 15, 65, 5, 3, 19, 15, 35, 5, 9, 7, 17, 11, 257, 7, 13, 3, 21, 9, 3, 37, 19, 7, 9, 5, 75, 17, 11, 5, 33, 7, 15, 21, 11 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
In other words, the binary representation of a(n) is the smallest suffix to be overlaid on the binary representation of the n-th prime number to obtain that of the next prime number.
This sequence has similarities with A006519; here we consider consecutive prime numbers, there consecutive nonnegative integers.
There are no two consecutive equal terms.
LINKS
FORMULA
a(n) <= prime(n+1) with equality iff prime(n+1) belongs to A014210.
EXAMPLE
The first terms, alongside the binary representations of a(n) and of prime(n+1), are:
n a(n) bin(a(n)) bin(prime(n+1))
-- ---- --------- ---------------
0 N/A N/A 10
1 1 1 11
2 5 101 101
3 3 11 111
4 11 1011 1011
5 5 101 1101
6 17 10001 10001
7 3 11 10011
8 7 111 10111
9 13 1101 11101
10 3 11 11111
PROG
(PARI) { base=2; p=2; forprime (q=p+1, 379, for (k=0, oo, m=base^k; if (q\m == p\m, print1 (q%m", "); p=q; break))) }
CROSSREFS
Cf. A006519, A014210, A335301 (decimal variant).
Sequence in context: A049829 A258333 A137613 * A259650 A165670 A221869
KEYWORD
nonn,base
AUTHOR
Rémy Sigrist, May 31 2020
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 19 04:35 EDT 2024. Contains 371782 sequences. (Running on oeis4.)