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!)
A369139 Numbers k such that Omega(k) = 1 + Omega(k + 1). 3
4, 6, 8, 10, 20, 22, 45, 46, 50, 58, 68, 76, 80, 82, 92, 104, 105, 106, 110, 114, 117, 152, 154, 165, 166, 178, 182, 186, 189, 212, 226, 236, 246, 258, 260, 261, 262, 266, 273, 286, 290, 315, 318, 322, 325, 333, 338, 342, 344, 345, 346, 354, 357, 358, 370, 382, 385, 402, 406, 410, 412, 424, 426 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers k that have one more prime divisor (counted by multiplicity) than k + 1.
LINKS
EXAMPLE
a(3) = 8 is a term because 8 = 2^3 has 3 prime divisors (counted by multiplicity) and 8 + 1 = 9 = 3^2 has 2.
MAPLE
N:= 1000: # for terms <= N
V:= map(numtheory:-bigomega, [$1..N+1]):
select(t -> V[t] = 1 + V[t+1], [$1..N]);
MATHEMATICA
s = {}; Do[If[PrimeOmega[k] == 1 + PrimeOmega[k + 1], AppendTo[s, k]], {k, 500}]; s
CROSSREFS
Cf. A001222, A045920, A076156. Contains A077065.
Sequence in context: A088011 A289424 A050835 * A294243 A349694 A298473
KEYWORD
nonn
AUTHOR
Zak Seidov and Robert Israel, Jan 14 2024
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 June 9 13:54 EDT 2024. Contains 373240 sequences. (Running on oeis4.)