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”).

A176393
a(n) = A176100(n) + 1 = 2*A141468(n) + 1.
0
1, 3, 9, 13, 17, 19, 21, 25, 29, 31, 33, 37, 41, 43, 45, 49, 51, 53, 55, 57, 61, 65, 67, 69, 71, 73, 77, 79, 81, 85, 89, 91, 93, 97, 99, 101, 103, 105, 109, 111, 113, 115, 117, 121, 125, 127, 129, 131, 133, 137, 139, 141, 145, 149, 151, 153, 155, 157, 161, 163, 165
OFFSET
1,2
MAPLE
From R. J. Mathar, Apr 20 2010: (Start)
isA001358 := proc(n) numtheory[bigomega](n) = 2 ; end proc:
A176100 :=proc(n) if n = 1 then 0; else for a from procname(n-1)+2 by 2 do if not isA001358(a) then return a; end if; end do: end if; end proc:
A176363 := proc(n) 1+A176100(n) ; end proc: seq(A176363(n), n=1..80) ; (End)
CROSSREFS
Sequence in context: A046865 A063791 A077791 * A345460 A239320 A243656
KEYWORD
nonn
AUTHOR
EXTENSIONS
Corrected (139 inserted) by R. J. Mathar, Apr 20 2010
STATUS
approved