OFFSET
1,2
COMMENTS
The sequence consists of primes and squares. However, not all squares are present. The first square that does not appear is 576.
The positions of records of the sequence form A273011.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
As in A007955(n) = n^(d(n)/2), where d(n) is the number of divisors of n, a(n) = n^(id(n)/2), where id(n) is the number of i-divisors (or infinitary divisors) of n.
MATHEMATICA
f[x_] := If[x == 1, 1, Sort@ Flatten@ Outer[Times, Sequence @@ (FactorInteger[x] /. {p_, m_Integer} :> p^Select[Range[0, m], BitOr[m, #] == m &])]] ; Array[Times @@ f@ # &, 55] (* Michael De Vlieger, Jun 07 2016, after Paul Abbott at A077609 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Jun 07 2016
STATUS
approved