OFFSET
1,2
COMMENTS
Numbers k such that A319442(k) | k.
All the odd terms are squares or numbers of the form 3 times a square.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
6 is a term since it is divisible by A319442(6) = 6.
MATHEMATICA
f[p_, e_] := Switch[Mod[p, 3], 0, 2*e + 1, 1, (e + 1)^2, 2, e + 1]; eisNumDiv[1] = 1; eisNumDiv[n_] := Times @@ f @@@ FactorInteger[n]; q[n_] := Divisible[n, eisNumDiv[n]]; Select[Range[1000], q]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Feb 22 2022
STATUS
approved