A146025 Numbers that can be written in bases 2, 3, 4, and 5 using only the digits 0 and 1.
0, 1, 82000
Offset: 1
Examples
82000 = 10100000001010000 (2) = 11011111001 (3) = 110001100 (4) = 10111000 (5).
Links
- Stuart A. Burrell and Han Yu, Digit expansions of numbers in different bases, arXiv:1905.00832 [math.NT], 2019.
- Daniel Glasscock, Joel Moreira, and Florian K. Richter, Additive transversality of fractal sets in the reals and the integers, arXiv:2007.05480 [math.NT], 2020. See p. 5.
- James Grime and Brady Haran, Why 82,000 is an extraordinary number, Numberphile video (2015)
- Alex P. Klinkhamer, Digits of 82000, search algorithm with code and analysis.
Crossrefs
Programs
-
Mathematica
f[n_] := Total[Total@ Drop[RotateRight[DigitCount[n, #]], 2] & /@ Range[3, 5]]; Select[Range[0, 100000], f@ # == 0 &] (* Michael De Vlieger, Aug 29 2015 *)
-
PARI
is(n)=vecmax(digits(n,5))<2 && vecmax(digits(n,4))<2 && vecmax(digits(n,3))<2 \\ Charles R Greathouse IV, Aug 31 2015
Extensions
Edited by Charles R Greathouse IV, Nov 01 2009
Search limit extended to astronomical odds by James G. Merickel, Dec 03 2013
Search limit increased again with example code by Alex P. Klinkhamer, Aug 29 2015
Removed keywords "fini" and "full", since it is only a conjecture that there are no further terms. - N. J. A. Sloane, Feb 06 2016
Comments