login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A078266 Integer part of the arithmetic mean of all the distinct numbers formed by permuting the digits of concatenation of numbers from 1 to n. 2
1, 16, 222, 2777, 33333, 388888, 4444444, 49999999, 555555555, 46464646464, 4102564102563, 377777777777777, 35947712418300653, 3508771929824561403, 349206349206349206348, 35265700483091787439613, 3599999999999999999999999 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For n < 10 there are n! distinct numbers.
LINKS
FORMULA
a(n) = A007953(A007908(n))*(10^A055642(A007908(n))-1)/(9*A055642(A007908(n))). - Chai Wah Wu, Jan 06 2019
EXAMPLE
a(3) = floor((123 + 132 + 213 + 231 + 312 + 321)/6) = 222;
a(4) = floor((1234 + 1243 + 1324 + 1342 + 1423 + 1432 + ... + 4312 + 4321)/24) = 66660/24 = 2777.
MAPLE
a:= proc(n) local s, t, l;
s:= cat("", seq(i, i=1..n)); t:= length(s);
l:= (p-> seq(coeff(p, x, i), i=0..9))(add(x^parse(s[i]), i=1..t));
floor((10^t-1)/9*add(i*l[i+1], i=1..9)/t)
end:
seq(a(n), n=1..20); # Alois P. Heinz, Jan 05 2019
PROG
(PARI) { a(n) = c=vector(10); for(i=1, n, s=eval(Vec(Str(i))); for(j=1, #s, c[s[j]+1]++); ); l=sum(j=1, 10, c[j]); (10^l-1)/9*sum(j=1, 10, (j-1)*c[j])\l } \\ Max Alekseyev
(Python)
def A078266(n):
s = ''.join(str(i) for i in range(1, n+1))
return sum(int(d) for d in s)*(10**len(s)-1)//(9*len(s)) # Chai Wah Wu, Jan 04 2019
CROSSREFS
Sequence in context: A193380 A076073 A092657 * A093746 A118779 A209444
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Nov 24 2002
EXTENSIONS
More terms from Max Alekseyev, Jan 24 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 18:22 EDT 2024. Contains 371750 sequences. (Running on oeis4.)