A357632 Numbers k such that the skew-alternating sum of the prime indices of k is 0.
1, 4, 9, 16, 25, 36, 49, 64, 81, 90, 100, 121, 144, 169, 196, 210, 225, 256, 289, 324, 360, 361, 400, 441, 462, 484, 525, 529, 550, 576, 625, 676, 729, 784, 840, 841, 858, 900, 910, 961, 1024, 1089, 1155, 1156, 1225, 1296, 1326, 1369, 1440, 1444, 1521, 1600
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 1: {} 4: {1,1} 9: {2,2} 16: {1,1,1,1} 25: {3,3} 36: {1,1,2,2} 49: {4,4} 64: {1,1,1,1,1,1} 81: {2,2,2,2} 90: {1,2,2,3} 100: {1,1,3,3} 121: {5,5} 144: {1,1,1,1,2,2}
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; skats[f_]:=Sum[f[[i]]*(-1)^(1+Ceiling[(i+1)/2]),{i,Length[f]}]; Select[Range[1000],skats[primeMS[#]]==0&]
Comments