login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A358817 Numbers k such that A046660(k) = A046660(k+1). 5
1, 2, 5, 6, 10, 13, 14, 21, 22, 29, 30, 33, 34, 37, 38, 41, 42, 44, 46, 49, 57, 58, 61, 65, 66, 69, 70, 73, 75, 77, 78, 80, 82, 85, 86, 93, 94, 98, 101, 102, 105, 106, 109, 110, 113, 114, 116, 118, 122, 129, 130, 133, 135, 137, 138, 141, 142, 145, 147, 154, 157
(list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
First differs from its subsequence A007674 at n=18.
The numbers of terms not exceeding 10^k, for k = 1, 2, ..., are 5, 38, 369, 3655, 36477, 364482, 3644923, 36449447, 364494215, 3644931537, ... . Apparently, the asymptotic density of this sequence exists and equals 0.36449... .
LINKS
MATHEMATICA
seq[kmax_] := Module[{s = {}, e1 = 0, e2}, Do[e2 = PrimeOmega[k] - PrimeNu[k]; If[e1 == e2, AppendTo[s, k - 1]]; e1 = e2, {k, 2, kmax}]; s]; seq[160]
PROG
(PARI) e(n) = {my(f = factor(n)); bigomega(f) - omega(f)};
lista(nmax) = {my(e1 = e(1), e2); for(n=2, nmax, e2=e(n); if(e1 == e2, print1(n-1, ", ")); e1 = e2); }
CROSSREFS
Cf. A046660.
Subsequences: A007674, A052213, A085651, A358818.
Similar sequences: A002961, A005237, A006049, A045920.
Sequence in context: A255055 A344314 A369020 * A369166 A369211 A007674
KEYWORD
nonn
AUTHOR
Amiram Eldar, Dec 02 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 18 09:46 EDT 2024. Contains 375999 sequences. (Running on oeis4.)