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 A077688 #10 Jun 08 2019 17:57:49 %S A077688 1,55,1665,269884,6565656565,1121212121211,176767676767675, %T A077688 26262626262626260,3727272727272727269,510101010101010101005, %U A077688 67777777777777777777771,8787878787878787878787870,1116161616161616161616161605 %N A077688 a(n) = sum of all cyclic permuted concatenations of the next n numbers. %F A077688 For n not in A068092 (implying that all n numbers in the concatenation have the same length L), a(n) = ((n^2+1)*n)/2 * (10^(L*n)-1)/(10^L-1), where L = ceiling(log(n^2/2)/log(10)). - _Max Alekseyev_, Feb 11 2005 %e A077688 a(2) = 23 + 32, a(4) = 78910 + 89107 + 91078 + 10789 = 269884 = sum of concatenation of numbers in each group: (7,8,9,10), (8,9,10,7), (9,10,7,8), (10,7,8,9). %o A077688 (PARI) { len10(n) = ceil(log(n+1)/log(10)) } { A077688(n) = local(m,w,s); m=0; for(k=1+(n*(n-1))/2,(n*(n+1))/2, m=m*10^len10(k)+k ); w=10^len10(m); s=0; for(k=1+(n*(n-1))/2,(n*(n+1))/2, m=(m*10^len10(k)+k)%w; s+=m ); return(s); } \ for n not in A068092 { a(n) = local(l); l=len10(n^2/2); return((n^2+1)*n*(10^(l*n)-1)/(10^l-1)/2) } \\ _Max Alekseyev_, Feb 11 2005 %Y A077688 Cf. A068092, A000217. %K A077688 base,nonn %O A077688 1,2 %A A077688 _Amarnath Murthy_, Nov 16 2002 %E A077688 More terms from _Max Alekseyev_, Feb 11 2005