The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A227932 Evil numbers (A001969) which can be written as a product of two odious numbers (A000069). 3
77, 147, 154, 169, 175, 209, 231, 245, 275, 287, 294, 308, 325, 329, 338, 343, 350, 399, 407, 413, 418, 427, 441, 455, 462, 469, 483, 490, 525, 533, 550, 553, 567, 574, 588, 605, 609, 616, 649, 650, 658, 676, 679, 686, 700, 703, 715, 735, 759, 763, 777, 798 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
Evil number 275 = 25*11. Since 25 and 11 are odious, then 275 is in the sequence.
MATHEMATICA
evilQ[n_] := EvenQ[DigitCount[n, 2][[1]]]; odiousQ[n_] := OddQ[DigitCount[n, 2][[1]]]; fQ[n_] := Module[{f, i}, If[PrimeQ[n], False, f = Select[Divisors[n], # > 1 && # <= Sqrt[n] &]; i = 1; While[i <= Length[f] && ! (odiousQ[f[[i]]] && odiousQ[n/f[[i]]]), i++]; i <= Length[f]]]; Select[Range[1000], evilQ[#] && fQ[#] &] (* T. D. Noe, Oct 16 2013 *)
CROSSREFS
Sequence in context: A118611 A072431 A046435 * A004964 A118226 A113945
KEYWORD
nonn,base
AUTHOR
Vladimir Shevelev, Oct 15 2013
EXTENSIONS
Extended by T. D. Noe, Oct 16 2013
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 June 2 09:29 EDT 2024. Contains 373033 sequences. (Running on oeis4.)