A355534 Irregular triangle read by rows where row n lists the augmented differences of the reversed prime indices of n.
1, 2, 1, 1, 3, 2, 1, 4, 1, 1, 1, 1, 2, 3, 1, 5, 2, 1, 1, 6, 4, 1, 2, 2, 1, 1, 1, 1, 7, 1, 2, 1, 8, 3, 1, 1, 3, 2, 5, 1, 9, 2, 1, 1, 1, 1, 3, 6, 1, 1, 1, 2, 4, 1, 1, 10, 2, 2, 1, 11, 1, 1, 1, 1, 1, 4, 2, 7, 1, 2, 3, 1, 2, 1, 1, 12, 8, 1, 5, 2, 3, 1, 1, 1
Offset: 2
Examples
Triangle begins: 2: 1 3: 2 4: 1 1 5: 3 6: 2 1 7: 4 8: 1 1 1 9: 1 2 10: 3 1 11: 5 12: 2 1 1 13: 6 14: 4 1 15: 2 2 16: 1 1 1 1 For example, the reversed prime indices of 825 are (5,3,3,2), which have augmented differences (3,1,2,2).
Links
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; aug[y_]:=Table[If[i
Comments