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!)
A067895 Write 2^n, 2^n+1, 2^n+2, ..., 2^(n+1)-1 in binary and add as if they were decimal numbers. 2
1, 21, 422, 8444, 168888, 3377776, 67555552, 1351111104, 27022222208, 540444444416, 10808888888832, 216177777777664, 4323555555555328, 86471111111110656, 1729422222222221312, 34588444444444442624, 691768888888888885248, 13835377777777777770496, 276707555555555555540992 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: (1 - x)/(1 - 22x + 40*x^2).
a(n) = 2^(n-1)*(19*10^n - 1)/9.
a(n) = 22*a(n-1) - 40*a(n-2).
E.g.f.: exp(2*x)*(19*exp(18*x) - 1)/18. - Stefano Spezia, Apr 03 2023
EXAMPLE
2^2 to 2^3-1 = 4 through 7 = 100, 101, 110 and 111 in binary and when summed = 422.
MATHEMATICA
Table[Total[FromDigits[IntegerDigits[#, 2]]&/@(Range[2^n, 2^(n+1)-1])], {n, 0, 20}] Harvey P. Dale, May 20 2012
PROG
(PARI) a(n)=if(n<0, 0, 2^(n-1)*(19*10^n-1)/9)
CROSSREFS
Cf. A067894.
Sequence in context: A170740 A064108 A353144 * A215856 A297692 A218840
KEYWORD
nonn,base,easy
AUTHOR
N. J. A. Sloane, May 15 2003
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)