login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A190789
Numbers n such that omega(n-1) + omega(n+1) = omega(n) where omega(n) = A001221(n).
2
2, 6, 10, 12, 18, 24, 26, 28, 48, 66, 70, 72, 78, 80, 82, 84, 90, 108, 110, 114, 120, 130, 132, 140, 156, 170, 174, 182, 190, 192, 222, 234, 238, 242, 252, 255, 258, 264, 276, 280, 290, 294, 306, 308, 310, 318, 336, 342, 350, 354, 366, 372, 374, 378, 380, 396, 402, 408, 410, 418
OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
FORMULA
omega(a(n)-1) + omega(a(n)+1) = omega(a(n)).
EXAMPLE
a(35)=255 because omega(254)+omega(256)=omega(255) or 2+1=3.
MATHEMATICA
Select[Range[5000], PrimeNu[# - 1] + PrimeNu[# + 1] == PrimeNu[ #] &] (* G. C. Greubel, Apr 24 2017 *)
Flatten[Position[Partition[PrimeNu[Range[450]], 3, 1], _?(#[[1]]+#[[3]] == #[[2]]&), 1, Heads->False]]+1 (* Harvey P. Dale, Jul 31 2017 *)
PROG
(PARI) isok(n) = omega(n) == omega(n-1) + omega(n+1); \\ Michel Marcus, Apr 25 2017
CROSSREFS
Cf. A001221.
Sequence in context: A357702 A263309 A253913 * A373049 A071638 A028348
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
a(18) corrected, a(22) added by Charles R Greathouse IV, May 24 2011
STATUS
approved