OFFSET
1,2
COMMENTS
a(1122755752855713895623244049306709034778906250) is the first term which cannot be included in the OEIS since it includes a non-decimal digit. - Charles R Greathouse IV, Sep 19 2012
Numbers in this mixed-radix number system can have multiple representations, so to avoid ambiguity this sequence assumes a greedy approach where leading digits are made as high as possible; thus we choose a(30) = 20000 rather than a(30) = 11201. - Sean A. Irvine, Mar 24 2019
LINKS
Sean A. Irvine, Table of n, a(n) for n = 1..10000
F. Iacobescu, Smarandache Partition Type and Other Sequences, Bull. Pure Appl. Sciences, Vol. 16E, No. 2 (1997), pp. 237-240.
Sean A. Irvine, Java program (github).
F. Smarandache, Collected Papers, Vol. II.
F. Smarandache, Sequences of Numbers Involved in Unsolved Problems.
Eric Weisstein's World of Mathematics, Smarandache Sequences.
EXAMPLE
The digits (from right to left) have values 1, 2, 3, 8, 15, etc. (A006882), hence a(29) = 11200 because 29 = 1*15 + 1*8 + 2*3 + 0*2 + 0*1.
MATHEMATICA
a[n_] := FromDigits[NumberDecompose[n, Range[n, 1, -1]!!]]; Array[a, 40] (* Amiram Eldar, May 11 2024 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Sean A. Irvine, Mar 24 2019
STATUS
approved