OFFSET
1,1
COMMENTS
It may seem that this is a subsequence of A162730, but it is not so, 131801 being the first counterexample. - Michel Marcus, Sep 19 2018
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
MATHEMATICA
f[n_]:=With[{f=FactorInteger[n][[All, 1]]}, PowerMod[ 2, Times@@f, Times@@f] == 2^f[[1]]]; Select[Range[250], PrimeOmega[#]==2&&SquareFreeQ[#]&&f[#]&] (* Harvey P. Dale, Jun 06 2017 *)
PROG
(PARI) isok(n) = {if ((bigomega(n) == 2) && (omega(n) == 2), my(p = factor(n)[1, 1]); lift(Mod(2, n)^n) == 2^p); } \\ Michel Marcus, Sep 19 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Juri-Stepan Gerasimov, Jan 14 2011
EXTENSIONS
Definition and terms corrected by R. J. Mathar, Jan 14 2011
STATUS
approved