A360669 Nonprime numbers > 1 for which the prime indices have the same mean as their first differences.
10, 39, 68, 115, 138, 259, 310, 328, 387, 517, 574, 636, 793, 795, 1034, 1168, 1206, 1241, 1281, 1340, 1534, 1691, 1825, 2212, 2278, 2328, 2343, 2369, 2370, 2727, 2774, 2905, 3081, 3277, 3818, 3924, 4064, 4074, 4247, 4268, 4360, 4539, 4850, 4905, 5243, 5335
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 1: {} 10: {1,3} 39: {2,6} 68: {1,1,7} 115: {3,9} 138: {1,2,9} 259: {4,12} 310: {1,3,11} 328: {1,1,1,13} 387: {2,2,14} 517: {5,15} 574: {1,4,13} 636: {1,1,2,16} For example, the prime indices of 138 are {1,2,9}, with mean 4, and with first differences (1,7), with mean also 4, so 138 is in the sequence.
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[2,1000],Mean[prix[#]]==Mean[Differences[prix[#]]]&]
Comments