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

A130199
Evil oblong (promic) numbers.
2
0, 6, 12, 20, 30, 72, 90, 132, 156, 210, 240, 272, 306, 380, 420, 462, 600, 650, 756, 870, 1056, 1122, 1260, 1406, 1482, 1560, 1806, 1892, 1980, 2070, 2256, 2352, 2550, 2652, 3192, 3422, 3660, 3906, 4032, 4160, 4290, 4556, 4830, 5112, 5256, 5402, 5550, 5852
OFFSET
1,2
LINKS
FORMULA
a(n) = 2*A130200(n). Multiplying by 2 doesn't change evilness. Hence evil oblong numbers are twice evil triangular numbers.
EXAMPLE
6 belongs to the sequence because binary expansion of 6 is 110 - contains an even number of ones.
MATHEMATICA
Select[Table[n(n + 1), {n, 0, 100}], EvenQ[Plus @@ IntegerDigits[ #, 2]] &]
PROG
(PARI) is(n)=n%2==0 && hammingweight(n)%2==0 && ispolygonal(n/2, 3) \\ Charles R Greathouse IV, Mar 16 2022
CROSSREFS
Cf. This sequence is the intersection of evil numbers (A001969) and oblong numbers (A002378).
Sequence in context: A056930 A326378 A064971 * A295904 A309836 A117343
KEYWORD
nonn,easy
AUTHOR
Tanya Khovanova, May 16 2007
EXTENSIONS
a(1) = 0 inserted and offset corrected by Amiram Eldar, Dec 09 2019
STATUS
approved