OFFSET
1,2
COMMENTS
All rows are different.
EXAMPLE
The 28-th squarefree number is 42, with 0-prepended prime indices (0,1,2,4), with differences (1,1,2), so row 28 is (1,1,2).
The squarefree numbers and corresponding rows begin:
1: () 23: (9) 47: (15)
2: (1) 26: (1,5) 51: (2,5)
3: (2) 29: (10) 53: (16)
5: (3) 30: (1,1,1) 55: (3,2)
6: (1,1) 31: (11) 57: (2,6)
7: (4) 33: (2,3) 58: (1,9)
10: (1,2) 34: (1,6) 59: (17)
11: (5) 35: (3,1) 61: (18)
13: (6) 37: (12) 62: (1,10)
14: (1,3) 38: (1,7) 65: (3,3)
15: (2,1) 39: (2,4) 66: (1,1,3)
17: (7) 41: (13) 67: (19)
19: (8) 42: (1,1,2) 69: (2,7)
21: (2,2) 43: (14) 70: (1,2,1)
22: (1,4) 46: (1,8) 71: (20)
MATHEMATICA
sql=Select[Range[100], SquareFreeQ];
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Table[Differences[Prepend[prix[sql[[n]]], 0]], {n, Length[sql]}]
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Gus Wiseman, May 23 2025
STATUS
approved
