A066962 Duplicate of A051913.
7, 9, 13, 14, 18, 19, 21, 26, 27, 28, 35, 36, 37, 38, 39, 42, 45, 52, 54, 56, 57, 63, 65, 70
Offset: 1
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
filter:= proc(n) local r,a,b; r:= numtheory:-phi(n); a:= padic:-ordp(r,2); b:= padic:-ordp(r,3); if b = 0 then return false fi; r = 2^a*3^b; end proc: select(filter, [seq(i,i=3..1000,2)]); # Robert Israel, May 11 2020
Do[If[Take[FactorInteger[EulerPhi[2n+1]][[ -1]], 1]=={3},Print[2n+1]],{n,1,10000}]
Comments