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!)
A077655 Number of consecutive successors of n having the same number of prime factors as n (counted with multiplicity). 4
0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,33
COMMENTS
If a(n) > 0 then a(n+1) = a(n)-1.
LINKS
EXAMPLE
33=3*11 has only two successors also with two factors: 34=2*17 and 35=5*7 (whereas 33+3=36=2*2*3*3), therefore a(33)=2.
MATHEMATICA
snpf[n_]:=Module[{f=PrimeOmega[n], k=0}, While[f==PrimeOmega[n+k], k++]; k]; Array[snpf, 110]-1 (* Harvey P. Dale, Aug 01 2021 *)
PROG
(PARI) A077655(n) = { my(k=n+1, w=bigomega(n)); while(bigomega(k)==w, k++); (k-n)-1; }; \\ Antti Karttunen, Jan 22 2020
CROSSREFS
Sequence in context: A343870 A339070 A352553 * A117886 A145723 A085977
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 13 2002
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 23 05:35 EDT 2024. Contains 371906 sequences. (Running on oeis4.)