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

A145109
a(n) = 2*n * core(2*n).
1
4, 4, 36, 16, 100, 36, 196, 16, 36, 100, 484, 144, 676, 196, 900, 64, 1156, 36, 1444, 400, 1764, 484, 2116, 144, 100, 676, 324, 784, 3364, 900, 3844, 64, 4356, 1156, 4900, 144, 5476, 1444, 6084, 400, 6724, 1764, 7396, 1936, 900, 2116, 8836, 576, 196, 100, 10404
OFFSET
1,1
COMMENTS
All terms are even squares (A016742).
LINKS
FORMULA
a(n) = A053143(2*n). - Michel Marcus, Aug 09 2013
MATHEMATICA
a[1] = 4; a[n_] := 2*n * Times @@ (First[#]^Mod[Last[#], 2] & /@ FactorInteger[2*n]); Array[a, 50] (* Amiram Eldar, Sep 05 2020 *)
PROG
(PARI) a(n) = 2*n * core(2*n); \\ Michel Marcus, Aug 09 2013
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Reikku Kulon, Oct 02 2008
EXTENSIONS
Definition corrected by Michel Marcus, Aug 09 2013
STATUS
approved