A378355 Numbers appearing exactly once in A378035 (greatest perfect power < prime(n)).
125, 216, 243, 64000, 1295029, 2535525316, 542939080312
Offset: 1
Examples
We have 125 because 127 is the only prime between 125 and 128.
Crossrefs
Programs
-
Mathematica
radQ[n_]:=n>1&&GCD@@Last/@FactorInteger[n]==1; y=Table[NestWhile[#-1&,Prime[n],radQ[#]&],{n,1000}]; Select[Union[y],Count[y,#]==1&]
Comments