OFFSET
1,3
COMMENTS
Conjecture: a(n) > 1 for all n > 203.
LINKS
Zhi-Wei Sun, Table of n, a(n) for n = 1..6000
EXAMPLE
a(8) = 1 since q(8) = 2*3 with 2 = q(3) and 3 = q(5).
a(23) = 13 since q(23) = 2^3*13 with 13 not dividing q(1)*q(2)*...*q(22), but 2 divides q(3) = 2.
MATHEMATICA
f[n_]:=FactorInteger[PartitionsQ[n]]
pp[n_]:=Table[Part[Part[f[n], k], 1], {k, 1, Length[f[n]]}]
Do[If[PartitionsQ[n]<2, Goto[cc]]; Do[Do[If[Mod[PartitionsQ[i], Part[pp[n], k]]==0, Goto[aa]], {i, 1, n-1}]; Print[n, " ", Part[pp[n], k]]; Goto[bb]; Label[aa]; Continue, {k, 1, Length[pp[n]]}]; Label[cc]; Print[n, " ", 1]; Label[bb]; Continue, {n, 1, 60}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, May 06 2014
STATUS
approved