OFFSET
1,1
COMMENTS
If a(n) < s(n), then a(n) is in row s(n) of A162306.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
EXAMPLE
Table of n, s(n), a(n) for select n:
n s(n) a(n)
-------------------------------------------------
1 6 = 2 * 3 2^2 * 3 = 12
2 10 = 2 * 5 2^2 * 5 = 20
3 14 = 2 * 7 2^2 * 7 = 28
4 15 = 3 * 5 3^2 * 5 = 45
5 21 = 3 * 7 3^2 * 7 = 63
6 22 = 2 * 11 2^2 * 11 = 44
7 26 = 2 * 13 2^2 * 13 = 52
8 30 = 2 * 3 * 5 2^2 * 3 = 12
82 210 = 2 * 3 * 5 * 7 2^2 * 3 = 12
1061 2310 = 2 * 3 * 5 * 7 * 11 2^2 * 3 = 12
MATHEMATICA
a120944Q[x_] := And[SquareFreeQ[x], CompositeQ[x]]; f[x_] := Apply[Times, FactorInteger[x][[;; 2, 1]]^{2, 1}]; Table[If[a120944Q[n], f[n], Nothing], {n, 160}]
PROG
(PARI) isfc(n) = issquarefree(n)&&!isprime(n)&&n>1; \\ A120944
f(n) = my(f=factor(n)); f[1, 1]^2*f[2, 1];
lista(nn) = apply(x->f(x), select(isfc, [1..nn])); \\ Michel Marcus, Apr 11 2026
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Michael De Vlieger, Apr 08 2026
STATUS
approved
