OFFSET
1,2
COMMENTS
Nontrivial (i.e., different from concatenation in reverse order) whenever a number of the form 10^k is in the considered range of n numbers; then a(n) is given as concatenation (10^k-1)...(1+n(n-1)/2)(n(n+1)/2)...(10^k).
EXAMPLE
1, then a concatenation of a permutation of 2 and 3, then a concatenation of a permutation of 4, 5 and 6.
PROG
(PARI 2.4.2) a(n)=eval(concat(vecsort(vector(n, i, Str(i+n*(n-1)/2)), , 4)))
CROSSREFS
KEYWORD
nonn,easy,less,base
AUTHOR
M. F. Hasler, Jun 29 2011
EXTENSIONS
Definition modified to obtain a new sequence different from (earlier duplicate) A080480. M. F. Hasler, Jun 29 2011.
STATUS
approved