A325276 Irregular triangle read by rows where row n is the omega-sequence of n!.
1, 2, 2, 1, 4, 2, 2, 1, 5, 3, 2, 2, 1, 7, 3, 3, 1, 8, 4, 3, 2, 2, 1, 11, 4, 3, 2, 2, 1, 13, 4, 3, 2, 2, 1, 15, 4, 4, 1, 16, 5, 4, 2, 2, 1, 19, 5, 4, 2, 2, 1, 20, 6, 4, 2, 2, 1, 22, 6, 4, 2, 1, 24, 6, 5, 2, 2, 1, 28, 6, 5, 2, 2, 1, 29, 7, 5, 2, 2, 1
Offset: 0
Examples
Triangle begins: {} {} 1 2 2 1 4 2 2 1 5 3 2 2 1 7 3 3 1 8 4 3 2 2 1 11 4 3 2 2 1 13 4 3 2 2 1 15 4 4 1 16 5 4 2 2 1 19 5 4 2 2 1 20 6 4 2 2 1 22 6 4 2 1 24 6 5 2 2 1 28 6 5 2 2 1 29 7 5 2 2 1 32 7 5 2 2 1 33 8 5 2 2 1 36 8 5 2 2 1 38 8 5 2 2 1 40 8 6 2 2 1 41 9 6 2 2 1 45 9 6 2 2 1 47 9 6 2 2 1 49 9 6 3 2 2 1 52 9 6 3 2 2 1 55 9 6 3 2 2 1 56 10 6 3 2 2 1 59 10 6 3 2 2 1
Crossrefs
Programs
-
Mathematica
omseq[n_Integer]:=If[n<=1,{},Total/@NestWhileList[Sort[Length/@Split[#]]&,Sort[Last/@FactorInteger[n]],Total[#]>1&]]; Table[omseq[n!],{n,0,30}]
Comments