A228870 Numbers n such that 2 * (1^n + 2^n + 3^n + ... + n^n) is not 0 (mod n).
6, 12, 18, 20, 24, 30, 36, 40, 42, 48, 54, 60, 66, 72, 78, 80, 84, 90, 96, 100, 102, 108, 110, 114, 120, 126, 132, 138, 140, 144, 150, 156, 160, 162, 168, 174, 180, 186, 192, 198, 200, 204, 210, 216, 220, 222, 228, 234, 240, 246, 252, 258, 260, 264, 270, 272
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Select[Range[100], Mod[2*Sum[PowerMod[k, #, #], {k, #}], #] > 0 &]
-
PARI
is(n)=my(f=factor(n)[,1]); for(i=1,#f, if(n%(f[i]-1)==0 && f[i]>2, return(1))); 0 \\ Charles R Greathouse IV, Dec 28 2016
Comments