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

A362330
The i-values of pairs (i, j) listed in A362329.
3
1, 1, 4, 3, 3, 4, 1, 3, 4, 5, 7, 4, 5, 5, 1, 4, 7, 10, 1, 4, 7, 10, 13, 3, 12, 3, 4, 12, 13, 1, 3, 4, 5, 7, 10, 12, 13, 14, 16, 4, 5, 9, 13, 14, 5, 9, 10, 14, 1, 4, 7, 9, 10, 11, 13, 16, 19, 9, 10, 11, 12, 9, 10, 11, 12, 13, 1, 4, 7, 9, 10, 11, 12, 13, 14, 16
OFFSET
1,3
COMMENTS
See A362331 for the j-values.
LINKS
PROG
(PARI) is(i, j) = { while (i && j, if (i%3==1 && j%3==1, return (0), i\=3; j\=3; ); ); return (1); }
row(ij) = select(i -> !is(i, ij-i), [0..ij])
CROSSREFS
Cf. A362329, A362331 (j-values).
Sequence in context: A281705 A026858 A188885 * A129344 A048853 A303701
KEYWORD
nonn,base
AUTHOR
Rémy Sigrist, Apr 16 2023
STATUS
approved