login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A124436
a(1)=1, a(n)=p_i^d_i where p_i is i-th prime and d_i is i-th digit of a(n-1).
0
1, 2, 4, 16, 1458, 2918430506250, 7164640537512654203797788776525821310188011060
OFFSET
1,2
COMMENTS
Or a(n-1)= decimal encoding of the prime factorization of a(n). Cf. A068633 Let n = p^a*q^b... then a(n) = concatenation paqb..., A067599 Decimal encoding of the prime factorization of n.
EXAMPLE
a(4)=16, a(5)=2^1 * 3^6 = 1458;
a(6)= 2^1 * 3^4 * 5^5 * 7^8 = 2918430506250.
MATHEMATICA
a[1]=1; id[n_]:=id[n]=IntegerDigits[a[n-1]]; a[n_]:=a[n]= Times@@Table[Prime[i]^id[n][[i]], {i, 1, Length[id[n]]}]; {1, Table[a[n], {n, 2, 7}]}//Flatten
CROSSREFS
Sequence in context: A371717 A001128 A280890 * A369378 A014221 A249760
KEYWORD
base,nonn
AUTHOR
Zak Seidov, Dec 16 2006
STATUS
approved