The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A350516 a(n) is the least k>1 such that omega(k) is equal to (omega(n*k + 1) - 1)/n. 1
5, 97, 443, 5801, 42697, 7813639, 10303967, 1225192093 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Are all terms prime numbers?
a(9) <= 14567138141, a(10) <= 5509396663871, a(11) <= 4128894057139, a(12) <= 13264466350165447, a(13) <= 6115610326638653. - Daniel Suteu, Mar 14 2022
LINKS
EXAMPLE
a(2) = 97 because omega(97) = (omega(2*97 + 1) - 1)/2 = (omega(3*5*13) - 1)/2 = 1.
MATHEMATICA
a[n_] := Module[{k = 2}, While[PrimeNu[k] != (PrimeNu[n*k + 1] - 1)/n, k++]; k]; Array[a, 5] (* Amiram Eldar, Mar 09 2022 *)
PROG
(PARI) a(n) = my(k=2); while (omega(k) != (omega(n*k + 1) - 1)/n, k++); k; \\ Michel Marcus, Mar 09 2022
(Python)
from sympy import factorint
for n in range(1, 8):
for k in range(2, 10**10):
if len(factorint(k).keys())*n+1==len(factorint(k*n+1).keys()):
print(n, k)
break # Martin Ehrenstein, Mar 14 2022
CROSSREFS
Cf. A001221 (omega).
Sequence in context: A194609 A139950 A102734 * A342443 A117341 A295190
KEYWORD
nonn,more
AUTHOR
EXTENSIONS
a(8) from Martin Ehrenstein, Mar 14 2022
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 May 15 04:25 EDT 2024. Contains 372536 sequences. (Running on oeis4.)