OFFSET
1,2
COMMENTS
List of prime divisors of n and their exponents, ignoring the exponent 1. - Michael De Vlieger, Oct 20 2021
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Prime Factorization.
EXAMPLE
n prime factorization triangle
1 = 1. -> 1;
2 = 2. -> 2;
3 = 3. -> 3;
4 = 2^2. -> 2, 2;
5 = 5. -> 5;
6 = 2*3. -> 2, 3;
7 = 7. -> 7;
8 = 2^3. -> 2, 3;
9 = 3^2. -> 3, 2;
10 = 2*5. -> 2, 5;
11 = 11. -> 11;
12 = 2^2*3. -> 2, 2, 3;
13 = 13. -> 13;
14 = 2*7 -> 2, 7;
15 = 3*5. -> 3, 5;
16 = 2^4. -> 2, 4;
MATHEMATICA
Array[DeleteCases[Flatten@ FactorInteger[#], 1] &, 58] /. {} -> {1} // Flatten (* Michael De Vlieger, Oct 20 2021 *)
PROG
CROSSREFS
KEYWORD
nonn,easy,tabf
AUTHOR
Seiichi Manyama, Oct 20 2021
STATUS
approved