login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A139817
2^n - number of digits of 2^n.
0
0, 1, 3, 7, 14, 30, 62, 125, 253, 509, 1020, 2044, 4092, 8188, 16379, 32763, 65531, 131066, 262138, 524282, 1048569, 2097145, 4194297, 8388601, 16777208, 33554424, 67108856, 134217719, 268435447, 536870903, 1073741814, 2147483638, 4294967286, 8589934582
OFFSET
0,3
FORMULA
a(n) = A000079(n) - A055642(A000079(n)). - Michel Marcus, Jul 18 2013
MATHEMATICA
Table[2^n-IntegerLength[2^n], {n, 0, 40}] (* Harvey P. Dale, Apr 05 2015 *)
PROG
(PARI) a(n) = 2^n - length(digits(2^n)) \\ Michel Marcus, Jul 18 2013
CROSSREFS
Sequence in context: A265381 A066225 A305777 * A173010 A036892 A123707
KEYWORD
nonn,base
AUTHOR
Rolf Pleisch, May 23 2008
EXTENSIONS
More terms from N. J. A. Sloane, Jun 29 2008
STATUS
approved