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

A341350
Numbers k for which A254049(k) [= A048673(2k-1)] is a multiple of 3.
3
2, 4, 7, 8, 10, 12, 14, 17, 18, 19, 22, 24, 26, 27, 32, 33, 34, 38, 39, 40, 42, 44, 47, 48, 49, 52, 55, 58, 59, 60, 62, 64, 66, 68, 70, 72, 74, 82, 83, 84, 86, 87, 88, 89, 91, 92, 93, 97, 102, 104, 105, 107, 108, 109, 110, 111, 112, 115, 117, 118, 121, 122, 126, 127, 128, 129, 132, 133, 134, 137, 139, 142, 144, 149
OFFSET
1,1
COMMENTS
Numbers k for which A292251(2k-1) > 0.
PROG
(PARI)
A003961(n) = { my(f=factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); }; \\ From A003961
A341346(n) = (((A003961(n+n-1)+1)/2)%3);
isA341350(n) = (0==A341346(n));
CROSSREFS
Positions of zeros in A341346.
Cf. A003961, A048673, A254049, A292251, A341349 (complement).
Sequence in context: A056231 A248637 A131346 * A047540 A116478 A207829
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 10 2021
STATUS
approved