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

A356448
Even numbers k such that k^2 is in A014567.
7
2, 4, 6, 8, 10, 12, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 72, 74, 76, 80, 82, 86, 88, 90, 92, 94, 96, 100, 102, 104, 106, 108, 110, 116, 118, 120, 122, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148
OFFSET
1,1
COMMENTS
Even numbers k such that k and sigma(k^2) are coprime, sigma = A000203.
LINKS
Jianing Song, Table of n, a(n) for n = 1..7127 (all terms <= 20000)
FORMULA
a(n) = 2*A356451(n).
EXAMPLE
12 is a term since 12 and sigma(12^2) = 403 are coprime.
PROG
(PARI) isA356448(n) = !(n%2) && gcd(n, sigma(n^2))==1
CROSSREFS
Cf. A014567, A000203, A356382, A356449, A356451, A356452 (complement in the even numbers).
Sequence in context: A011860 A259278 A049445 * A340521 A002174 A002202
KEYWORD
nonn,easy
AUTHOR
Jianing Song, Aug 07 2022
STATUS
approved