A378084 Nonsquarefree numbers not appearing in A377783 (least nonsquarefree number > prime(n)).
9, 25, 27, 28, 36, 45, 49, 50, 52, 56, 64, 76, 81, 88, 92, 96, 99, 100, 117, 120, 121, 124, 125, 126, 135, 136, 144, 147, 148, 153, 156, 162, 169, 171, 172, 176, 188, 189, 204, 207, 208, 216, 220, 225, 236, 243, 244, 245, 248, 250, 256, 261, 268, 275, 276, 280
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 9: {2,2} 25: {3,3} 27: {2,2,2} 28: {1,1,4} 36: {1,1,2,2} 45: {2,2,3} 49: {4,4} 50: {1,3,3} 52: {1,1,6} 56: {1,1,1,4} 64: {1,1,1,1,1,1} 76: {1,1,8} 81: {2,2,2,2} 88: {1,1,1,5} 92: {1,1,9} 96: {1,1,1,1,1,2}
Crossrefs
Programs
-
Mathematica
nn=100; y=Table[NestWhile[#+1&,Prime[n],SquareFreeQ[#]&],{n,nn}]; Complement[Select[Range[Prime[nn]],!SquareFreeQ[#]&],y]
Comments