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

A354934
Row 4 of A354940: Numbers k for which A345992(k) = 4, divided by 4.
2
5, 9, 13, 17, 21, 25, 29, 37, 41, 49, 53, 57, 61, 73, 81, 85, 89, 93, 97, 101, 109, 113, 117, 121, 125, 129, 137, 149, 157, 169, 173, 181, 185, 193, 197, 201, 217, 229, 233, 237, 241, 253, 257, 269, 277, 281, 289, 293, 297, 301, 309, 313, 317, 337, 341, 349, 353, 361, 373, 381, 389, 397, 401, 409, 413, 417, 421, 425
OFFSET
1,1
COMMENTS
Apparently a subsequence of A016813.
MATHEMATICA
q[n_] := Module[{m = 1}, While[!Divisible[m*(m + 1), 4*n], m++]; GCD[4*n, m] == 4]; Select[Range[425], q] (* Amiram Eldar, Jun 17 2022 *)
PROG
(PARI) A354934(n) = A354940sq(4, n);
CROSSREFS
Row 4 of A354940.
Sequence in context: A314671 A314672 A314673 * A314674 A314675 A314676
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jun 15 2022
STATUS
approved