OFFSET
1,1
COMMENTS
The prime factors are taken with multiplicity.
All perfect prime powers (A025475) with power > 1 are included. First term not included in A025475 is a(211) = 707265 = A134614(5) = A134615(1).
Originally, the first term was 1. This was wrong, since the cube mean of the prime factors of 1 is zero, by definition of the empty sum.
LINKS
Hieronymus Fischer, Table of n, a(n) for n = 1..8600
EXAMPLE
a(5) = 25, since 25 = 5*5 and ((5^3+5^3)/2)^(1/3) = 5.
PROG
(PARI) lista(m) = {for (i=2, m, if (! isprime(i), f = factor(i); s = sum (j=1, length(f~), f[j, 1]^3*f[j, 2]); s /= bigomega(i); if (type(s) == "t_INT" && ispower(s, 3, &p) && isprime(p), print1(i, ", ")); ); ); } \\ Michel Marcus, Apr 14 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Hieronymus Fischer, Nov 11 2007
EXTENSIONS
Edited by Hieronymus Fischer, May 30 2013
STATUS
approved