OFFSET
1,2
LINKS
Eric Weisstein's World of Mathematics, Distinct Prime Factors
EXAMPLE
The irregular triangle begins:
1: {1}
2: {2}
3: {3}
4: {2}
5: {5}
6: {3, 2}
7: {7}
8: {2}
9: {3}
10: {5, 2}
11: {11}
12: {3, 2}
MATHEMATICA
Flatten[Table[Reverse[FactorInteger[n][[All, 1]]], {n, 1, 62}]]
PROG
(Haskell)
a302170 n k = a302170_tabl !! (n-1) !! (k-1)
a302170_tabl = map a302170_row [1..]
a302170_row = reverse . a027748_row
-- Brian Chess, Sep 19 2022
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Ilya Gutkovskiy, Apr 02 2018
STATUS
approved