OFFSET
1,1
EXAMPLE
n=4: primorial[4]=2310; a(4)=4359293547691=A084318[2310]; the list of iterations:
{2310, 235711, 7151223, 34495309, 41841349, 1116722777, 1958774883, 313113444469, 744730492067, 4359293547691};
at each step the ordered prime factors of previous term are concatenated.
MATHEMATICA
ffi[x_] := Flatten[FactorInteger[x]] ba[x_] := Table[Part[ffi[x], 2*w-1], {w, 1, lf[x]}] q[x_] := Apply[Times, Table[Prime[w], {w, 1, x}]] lf[x_] := Length[FactorInteger[x]] nd[x_, y_] := 10*x+y tn[x_] := Fold[nd, 0, x] coc[x_] := Fold[nd, 0, Flatten[IntegerDigits[ba[x]], 1]] Table[FixedPoint[coc, q[w]], {w, 1, 7}]
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Labos Elemer, Jun 20 2003
STATUS
approved