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!)
A110382 Numbers which are sum of distinct unary numbers (containing only ones), i.e., numbers which are sum of distinct numbers of the form (10^k - 1)/9. 2
1, 11, 12, 111, 112, 122, 123, 1111, 1112, 1122, 1123, 1222, 1223, 1233, 1234, 11111, 11112, 11122, 11123, 11222, 11223, 11233, 11234, 12222, 12223, 12233, 12234, 12333, 12334, 12344, 12345, 111111, 111112, 111122, 111123, 111222, 111223 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Not the same as A096299, since a(1023) = 1234567900 which is not in lexicographic order. - Ralf Stephan, May 17 2007
LINKS
FORMULA
G.f.: 1/(1-x) * Sum_{k>=0} (10^(k+1) - 1)/9 * x^2^k/(1 + x^2^k). - Ralf Stephan, May 17 2007
a(n) = 10*a(floor(n/2)) + A000120(n) = Sum_{k=0..floor(log_2(n))} A000120(floor(n/(2^k)))*10^k. - Mikhail Kurkov, May 08 2019
a(n) = a(floor(n/2)) + A007088(n) = (10*A007088(n) - A000120(n))/9. - Mikhail Kurkov, Mar 03 2021
MATHEMATICA
Nest[Append[#1, 10 #1[[Floor[#2/2] ]] + DigitCount[#2, 2, 1]] & @@ {#, Length[#] + 1} &, {1}, 36] (* Michael De Vlieger, Mar 12 2021 *)
PROG
(PARI) a(n) = sum(k=0, log(n)\log(2), hammingweight(n\(2^k))*10^k); \\ Michel Marcus, May 09 2019
(PARI) a(n) = my(b = Vecrev(binary(n))); sum(i = 1, #b, b[i] * 10^i-1) \ 9 + (vecmin(b) == 0) \\ David A. Corneth, May 19 2019
CROSSREFS
Cf. A096299.
Sequence in context: A071159 A231873 A096299 * A095764 A342944 A363931
KEYWORD
easy,nonn,changed
AUTHOR
Amarnath Murthy, Jul 25 2005
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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)