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!)
A048645 Integers with one or two 1-bits in their binary expansion. 33

%I #109 Apr 04 2023 22:13:24

%S 1,2,3,4,5,6,8,9,10,12,16,17,18,20,24,32,33,34,36,40,48,64,65,66,68,

%T 72,80,96,128,129,130,132,136,144,160,192,256,257,258,260,264,272,288,

%U 320,384,512,513,514,516,520,528,544,576,640,768,1024,1025,1026,1028,1032

%N Integers with one or two 1-bits in their binary expansion.

%C Apart from initial 1, sums of two not necessarily distinct powers of 2.

%C 4 does not divide C(2s-1,s) (= A001700[ s ]) if and only if s=a(n).

%C Possible number of sides of a regular polygon such that there exists a triangulation where each triangle is isosceles. - _Sen-peng Eu_, May 07 2008

%C Also numbers n such that n!/2^(n-2) is an integer. - _Michel Lagneau_, Mar 28 2011

%C It appears these are also the indices of the terms that are shared by the cellular automata of A147562, A162795, A169707. - _Omar E. Pol_, Feb 21 2015

%C Numbers with binary weight 1 or 2. - _Omar E. Pol_, Feb 22 2015

%H Reinhard Zumkeller, <a href="/A048645/b048645.txt">Rows n = 1..100 of triangle, flattened</a>

%H Michael P. Connolly, <a href="https://research.manchester.ac.uk/en/studentTheses/probabilistic-rounding-error-analysis-for-numerical-linear-algebr">Probabilistic rounding error analysis for numerical linear algebra</a>, Ph. D. Thesis, Univ. Manchester (UK, 2022). See p. 55.

%H USA Mathematical Olympiad, <a href="https://artofproblemsolving.com/wiki/index.php/2008_USAMO_Problems/Problem_4">Problem 4</a>, 2008.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/AutomaticSet.html">Automatic Set</a>.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/BinomialCoefficient.html">Binomial Coefficient</a>.

%H <a href="/index/Ce#cell">Index entries for sequences related to cellular automata</a>.

%H <a href="/index/O#Olympiads">Index to sequences related to Olympiads and other Mathematical competitions</a>.

%F a(0) = 1, a(n) = (2^(trinv(n-1)-1) + 2^((n-1)-((trinv(n-1)*(trinv(n-1)-1))/2))), i.e., 2^A003056(n) + 2^A002262(n-1) (the latter sequence contains the definition of trinv).

%F Let Theta = Sum_{k >= 0} x^(2^k). Then Sum_{n>=1} x^a(n) = (Theta^2 + Theta + x)/2. - _N. J. A. Sloane_, Jun 23 2009

%F As a triangle, for n > 1, 1 < k <= n: T(n,1) = A173786(n-2,n-2) and T(n,k) = A173786(n-1,k-2). - _Reinhard Zumkeller_, Feb 28 2010

%F It appears that A147562(a(n)) = A162795(a(n)) = A169707(a(n)). - _Omar E. Pol_, Feb 19 2015

%F Sum_{n>=1} 1/a(n) = 2 + A179951. - _Amiram Eldar_, Jan 22 2022

%e From _Omar E. Pol_, Feb 18 2015: (Start)

%e Also, written as a triangle T(j,k), k >= 1, in which row lengths are the terms of A028310:

%e 1;

%e 2;

%e 3, 4;

%e 5, 6, 8;

%e 9, 10, 12, 16;

%e 17, 18, 20, 24, 32;

%e 33, 34, 36, 40, 48, 64;

%e 65, 66, 68, 72, 80, 96, 128;

%e ...

%e It appears that column 1 is A094373.

%e It appears that the right border gives A000079.

%e It appears that the first differences in every row that contains at least two terms give the first h-1 powers of 2, where h is the length of the row.

%e (End)

%p lincom:=proc(a,b,n) local i,j,s,m; s:={}; for i from 0 to n do for j from 0 to n do m:=a^i+b^j; if m<=n then s:={op(s),m} fi od; od; lprint(sort([op(s)])); end: lincom(2,2,1000); # _Zerinvary Lajos_, Feb 24 2007

%t Select[Range[2000], 1 <= DigitCount[#, 2, 1] <= 2&] (* _Jean-François Alcover_, Mar 06 2016 *)

%o (Haskell)

%o import Data.List (insert)

%o a048645 n k = a048645_tabl !! (n-1) !! (k-1)

%o a048645_row n = a048645_tabl !! (n-1)

%o a048645_tabl = iterate (\xs -> insert (2 * head xs + 1) $ map ((* 2)) xs) [1]

%o a048645_list = concat a048645_tabl

%o -- _Reinhard Zumkeller_, Dec 19 2012

%o (PARI) isok(n) = my(hw = hammingweight(n)); (hw == 1) || (hw == 2); \\ _Michel Marcus_, Mar 06 2016

%o (PARI) a(n) = if(n <= 2, return(n), n-=2); my(c = (sqrtint(8*n + 1) - 1) \ 2); 1 << c + 1 << (n - binomial(c + 1, 2)) \\ _David A. Corneth_, Jan 02 2019

%o (PARI) nxt(n) = msb = 1 << logint(n, 2); if(n == msb, n + 1, t = n - msb; n + t) \\ _David A. Corneth_, Jan 02 2019

%o (Python)

%o def ok(n): return 1 <= bin(n)[2:].count('1') <= 2

%o print([k for k in range(1033) if ok(k)]) # _Michael S. Branicky_, Jan 22 2022

%o (Python)

%o from itertools import count, islice

%o def agen(): # generator of terms

%o for d in count(0):

%o msb = 2**d

%o yield msb

%o for lsb in range(d):

%o yield msb + 2**lsb

%o print(list(islice(agen(), 60))) # _Michael S. Branicky_, Jan 22 2022

%Y Cf. A018900, A048623, A046097, A169707, A147562, A162795, A003056, A002262, A094373, A028310, A179951.

%K easy,nonn,base,tabl

%O 1,2

%A _Antti Karttunen_, Jul 14 1999

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 04:04 EDT 2024. Contains 371782 sequences. (Running on oeis4.)