This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A219664 #19 Jul 17 2025 14:12:15 %S A219664 9,81,18,81,9,702,9,171,27,72,18,693,18,72,27,171,9,702,9,81,18,81,9, %T A219664 5913,9,81,18,81,9,1602,9,261,36,63,27,594,18,162,36,162,18,603,9,171, %U A219664 27,72,18,5814,9,171,27,72,18,603,9,261,36,63,27,1584,27,63,36 %N A219664 Repeating part of A220664: First differences of the numbers given as concatenation of permutations of (1,...,m) for sufficiently large m. %C A219664 First 5!-1 terms are identical to A107346, and the 9!-1 terms are identical to A209280. (Updated by _M. F. Hasler_, Jan 12 2013, Mar 03 2013) %C A219664 Because of the self-similar nature of A220664, this sequence can be also constructed by picking appropriate terms from there with the auxiliary sequence A220655, cf. formula. %C A219664 Similarly, differences between successive permutations of {1,2,...,k} in lexicographic order interpreted as decimal numbers, for any k=2..9, produce the first (k!)-1 terms of this sequence. But for k=10 the result is ill-defined, so we can consider the sequence finite, well-defined only for n=1..362879. [See however the following comment. - Editor's note] %C A219664 In sequence A030299 it is clearly defined how it extends beyond index n = 1!+2!+...+9! = A007489(9), so the sequence A220664 of its first differences is well-defined up to infinity. (The "result" mentioned above is ill defined because the meaning of "interpreted" is not clear.) But the preceding comment is misleading by speaking of "self similar nature", and the sequence definition as "repeating part" is also misleading: If the sequence is defined to be of finite length 9!-1 (thus equal to A209280), then it is indeed infinitely often repeated as a subsequence (of consecutive terms) in A220664 (even when the latter was defined using concatenation for permutations of more than 9 elements, but then not as differences of the terms following 12345678910 where it was expected, but, e.g., as differences of the terms following 10123456789, etc.). %C A219664 Since A030299 has been defined through a ("simpler") sum rather than concatenation, the nice mathematical properties of A220664, and even more this sequence A219664, persist beyond n=9!. - _M. F. Hasler_, Jan 12 2013 %H A219664 A. Karttunen, <a href="/A219664/b219664.txt">Table of n, a(n) for n = 1..5039</a> %F A219664 a(n) = A220664(A220655(n)). %F A219664 a(n) = 9*A217626(n). %e A219664 The first four permutations of nine elements at A030299(A003422(9)..A003422(9)+3) (the terms A030299(46234..46237)) are: 123456789, 123456798, 123456879, 123456897. As 123456897-123456879 = 18, thus we have a(3) = 18. %e A219664 We could compute the same value from any smaller set of permutations of at least three elements, for example, from the five element permutations used in A107346. In that case, the permutations A030299(A003422(5)..A003422(5)+3) (the terms A030299(34..37)) are: 12345, 12354, 12435, 12453, ... and we get the same result, a(3) = 12453-12435 = 18. %o A219664 (Scheme) (define (A219664 n) (A220664 (A220655 n))) %o A219664 (PARI) A219664(n)=for(k=2,n+1, k!>n || next; k=vecsort( vector( (#k=vector(k,j,10^j)~\10)!,i,numtoperm(#k,i)*k )); return(k[n+1]-k[n])) \\ (It is of course more efficient to calculate a whole vector of the first k!-1 terms. Also, for n>9!, this might yield incorrect terms.) - _M. F. Hasler_, Jan 12 2013 %Y A219664 Cf. A107346, A220664, A033029. %K A219664 nonn,base %O A219664 1,1 %A A219664 _Antti Karttunen_, Dec 18 2012