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

A353297
The i-values of pairs (i,j) listed in A353296.
3
1, 1, 2, 3, 2, 3, 1, 3, 5, 1, 2, 3, 4, 5, 6, 7, 2, 3, 4, 5, 6, 7, 1, 3, 4, 5, 6, 7, 9, 4, 5, 6, 7, 1, 2, 3, 5, 6, 7, 9, 10, 11, 2, 3, 6, 7, 10, 11, 1, 3, 5, 7, 9, 11, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13
OFFSET
1,3
COMMENTS
See A353298 for the j-values.
LINKS
Rémy Sigrist, Table of n, a(n) for n = 1..6196 (values for i+j <= 128)
EXAMPLE
Irregular array begins:
[]
[1]
[]
[1, 2, 3]
[2, 3]
[1, 3, 5]
[]
[1, 2, 3, 4, 5, 6, 7]
...
MATHEMATICA
A353297row[ij_] := Select[Range[ij], BitAnd[#, ij-#] > 0 &];
Array[A353297row, 25] (* Paolo Xausa, Feb 24 2024 *)
PROG
(PARI) row(ij) = select(i -> bitand(i, ij-i)>0, [1..ij])
CROSSREFS
Sequence in context: A106560 A263350 A202495 * A103431 A238576 A239238
KEYWORD
nonn,base,tabf
AUTHOR
STATUS
approved