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

A036348
Even numbers whose number of odd prime factors is odd (when counted with multiplicity).
4
6, 10, 12, 14, 20, 22, 24, 26, 28, 34, 38, 40, 44, 46, 48, 52, 54, 56, 58, 62, 68, 74, 76, 80, 82, 86, 88, 90, 92, 94, 96, 104, 106, 108, 112, 116, 118, 122, 124, 126, 134, 136, 142, 146, 148, 150, 152, 158, 160, 164, 166, 172, 176, 178, 180, 184, 188, 192, 194, 198, 202, 206, 208
OFFSET
1,1
COMMENTS
Parity of 'even number' and its sum of prime factors differs (counted with multiplicity). - The original name of the sequence.
Even terms of A036347, and even terms of A335657. Term is listed if and only if it is the product of a term of A067019 and a power of 2 (term of A000079) larger than 1. Cf. also A036349. - Antti Karttunen, Jan 15 2023
LINKS
FORMULA
{k | k == 0 mod 2 and A087436(n) == 1 mod 2}. - Antti Karttunen, Jan 16 2023
EXAMPLE
88 = 2 * 2 * 2 * 11 -> sum = 17; 88 is even while 17 is odd, so 88 is a term.
MATHEMATICA
Select[2*Range[100], OddQ[Total[Flatten[Table[#[[1]], {#[[2]]}]&/@ FactorInteger[#]]]]&] (* Harvey P. Dale, Sep 22 2014 *)
PROG
(PARI) isA036348(n) = (!(n%2) && (bigomega(n>>valuation(n, 2))%2)); \\ Antti Karttunen, Jan 15 2023
CROSSREFS
Even terms in A036347 and in A335657.
Setwise difference A036347 \ A046337.
Setwise difference A335657 \ A067019.
Sequence in context: A036350 A295076 A088829 * A100368 A128691 A359875
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Dec 15 1998
EXTENSIONS
Offset corrected, name edited and more terms added by Antti Karttunen, Jan 15 2023
STATUS
approved