OFFSET
5,1
COMMENTS
All terms are odd.
It seems that all composite terms not divisible by 3 form a supersequence of A292081. - Ivan N. Ianakiev, Oct 30 2023
LINKS
Michel Marcus, Table of n, a(n) for n = 5..1000
EXAMPLE
The terms together with their prime factors (which sum to n) begin:
5 = 5
9 = 3*3
7 = 7
15 = 3*5
27 = 3*3*3
21 = 3*7
11 = 11
35 = 5*7
13 = 13
33 = 3*11
105 = 3*5*7
MATHEMATICA
nn=1000;
w=Table[Total[Times@@@DeleteCases[If[n==1, {}, FactorInteger[n]], {2, _}]], {n, nn}];
spnm[y_]:=Max@@Select[Union[y], Function[i, Union[Select[y, #<=i&]]==Range[i]]];
Table[Position[w, k][[1, 1]], {k, 5, spnm[Join[{1, 2, 3, 4}, Take[w, nn]/.(0->1)]]}]
PROG
(PARI) f(n) = my(f=factor(n), j=if (n%2, 1, 2)); sum(i=j, #f~, f[i, 1]*f[i, 2]); \\ A366840
a(n) = my(k=1); while (f(k) != n, k++); k; \\ Michel Marcus, Nov 02 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Oct 27 2023
STATUS
approved