OFFSET
1,3
COMMENTS
For any nonnegative number n, the EQ-triangle for n is built by taking as first row the binary expansion of n (without leading zeros), having each entry in the subsequent rows be the EQ of the two values above it (a "1" indicates that these two values are equal, a "0" indicates that these values are different).
The second row in such a triangle has binary expansion given by A279645.
If m belongs to this sequence, then A030101(m) also belongs to this sequence.
All positive terms are odd.
This sequence is a variant of A334556; here we use bitwise EQ, there bitwise XOR.
LINKS
EXAMPLE
For 349:
- the binary expansion of 349 is "101011101",
- the corresponding EQ-triangle is (with dots instead of 0's for clarity):
1 . 1 . 1 1 1 . 1
. . . . 1 1 . .
1 1 1 . 1 . 1
1 1 . . . .
1 . 1 1 1
. . 1 1
1 . 1
. .
1
- this triangle has 3-fold rotational symmetry, so 349 belongs to this sequence.
PROG
(PARI) is(n) = {
my (b=binary(n), p=b);
for (k=1, #b,
if (b[k]!=p[#p], return (0));
if (p[1]!=b[#b+1-k], return (0));
p = vector(#p-1, k, p[k]==p[k+1]);
);
return (1);
}
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Rémy Sigrist, May 24 2020
STATUS
approved