OFFSET
1,1
COMMENTS
Parity of 'even number' and its sum of prime factors differs (counted with multiplicity). - The original name of the sequence.
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..10000
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
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