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

A362331
The j-values of pairs (i, j) listed in A362329.
3
1, 4, 1, 3, 4, 3, 7, 5, 4, 3, 1, 5, 4, 5, 10, 7, 4, 1, 13, 10, 7, 4, 1, 12, 3, 13, 12, 4, 3, 16, 14, 13, 12, 10, 7, 5, 4, 3, 1, 14, 13, 9, 5, 4, 14, 10, 9, 5, 19, 16, 13, 11, 10, 9, 7, 4, 1, 12, 11, 10, 9, 13, 12, 11, 10, 9, 22, 19, 16, 14, 13, 12, 11, 10, 9
OFFSET
1,2
COMMENTS
See A362330 for the i-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) = apply (i -> ij-i, select(i -> !is(i, ij-i), [0..ij]))
CROSSREFS
Cf. A362329, A362330 (i-values).
Sequence in context: A376353 A078147 A376312 * A376264 A058303 A240935
KEYWORD
nonn,base
AUTHOR
Rémy Sigrist, Apr 16 2023
STATUS
approved