OFFSET
1,2
COMMENTS
Has same shape as the triangle in A027746. The first difference occurs at row 12.
LINKS
Michel Marcus, Rows n=1..3000 of triangle, flattened (first 131 rows from I. V. Serov)
FORMULA
EXAMPLE
Triangle begins:
1;
2;
3;
2, 2;
5;
2, 3;
7;
2, 2, 2;
3, 3;
2, 5;
11;
2, 3, 2;
...
PROG
(PARI) f(n)=ispower(n, , &n); if(isprime(n), n, 1); \\ A014963
row(n) = if (n==1, [1], my(d=divisors(n)); select(x->x!=1, vector(#d, k, f(d[k]))));
tabl(nn) = for (n=1, nn, print(row(n))); \\ Michel Marcus, Apr 27 2019
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
I. V. Serov, Apr 26 2019
STATUS
approved