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!)
A135124 Numbers such that the digital sums in base 2, base 4 and base 8 are all equal. 1
1, 64, 65, 4096, 4097, 4160, 4161, 262144, 262145, 262208, 262209, 266240, 266241, 266304, 266305, 16777216, 16777217, 16777280, 16777281, 16781312, 16781313, 16781376, 16781377, 17039360, 17039361, 17039424, 17039425, 17043456 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Written as base 64 numbers the sequence is 1,10,11,100,101,110,111,1000,1001, ... (cf. A007088)
LINKS
Hsien-Kuei Hwang, Svante Janson, and Tsung-Hsi Tsai, Identities and periodic oscillations of divide-and-conquer recurrences splitting at half, arXiv:2210.10968 [cs.DS], 2022, p. 45.
FORMULA
a(n) = (1/2)*Sum_{k=0..floor(log_2(n))} (1-(-1)^floor(n/2^k))*64^k.
G.f.: (1/(1-x))*Sum_{k>=0} 64^k*x^(2^k)/(1+x^(2^k)).
EXAMPLE
a(7)=4161, since ds_2(4161 )=ds_4(4161 )=ds_8(4161 ), where ds_x=digital sum base x.
MATHEMATICA
Select[Range[500000], Total[IntegerDigits[#, 2]] == Total[IntegerDigits[#, 4]] == Total[IntegerDigits[#, 8]] &] (* G. C. Greubel, Sep 26 2016 *)
With[{k = 64}, Rest@ Map[FromDigits[#, k] &, Tuples[{0, 1}, 5]]] (* Michael De Vlieger, Oct 28 2022 *)
CROSSREFS
Sequence in context: A151984 A194769 A217846 * A223590 A070931 A095533
KEYWORD
nonn,base
AUTHOR
Hieronymus Fischer, Dec 31 2007, Dec 31 2008
EXTENSIONS
Edited by N. J. A. Sloane, Jan 17 2009
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 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)