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!)
A037227 If n = 2^m*k, k odd, then a(n) = 2*m+1. 14

%I #67 Nov 29 2022 02:46:53

%S 1,3,1,5,1,3,1,7,1,3,1,5,1,3,1,9,1,3,1,5,1,3,1,7,1,3,1,5,1,3,1,11,1,3,

%T 1,5,1,3,1,7,1,3,1,5,1,3,1,9,1,3,1,5,1,3,1,7,1,3,1,5,1,3,1,13,1,3,1,5,

%U 1,3,1,7,1,3,1,5,1,3,1,9,1,3,1,5,1,3,1,7,1,3,1,5,1,3,1,11,1,3,1,5,1,3

%N If n = 2^m*k, k odd, then a(n) = 2*m+1.

%C Take the number of rightmost zeros in the binary expansion of n, double it, and increment it by 1. - _Ralf Stephan_, Aug 22 2013

%C Gives the maximum possible number of n X n complex Hermitian matrices with the property that all of their nonzero real linear combinations are nonsingular (see Adams et al. reference). - _Nathaniel Johnston_, Dec 11 2013

%H T. D. Noe, <a href="/A037227/b037227.txt">Table of n, a(n) for n=1..1024</a>

%H J. F. Adams, P. D. Lax, and R. S. Phillips, <a href="http://dx.doi.org/10.1090/S0002-9939-1965-0179183-6">On matrices whose real linear combinations are nonsingular</a>, Proceedings of the American Mathematical Society, 16:318-322, 1965.

%H D. B. Shapiro, <a href="http://www.jstor.org/stable/2589421">Problem 10456: Anticommuting Matrices</a>, Amer. Math. Monthly, 105 (1998), 565-566.

%H <a href="/index/Bi#binary">Index entries for sequences related to binary expansion of n</a>

%F a(n) = Sum_{d divides n} (-1)^(d+1)*mu(d)*tau(n/d). Multiplicative with a(p^e) = 2*e+1 if p = 2; 1 if p > 2. - _Vladeta Jovovic_, Apr 27 2003

%F a(n) = a(n-1)+(-1)^n*(a(floor(n/2))+1). - _Vladeta Jovovic_, Apr 27 2003

%F a(2*n) = a(n) + 2, a(2*n+1) = 1. a(n) = 2*A007814(n) + 1. - _Ralf Stephan_, Oct 07 2003

%F a(A005408(n)) = 1; a(A016825(n)) = 3; A017113(a(n)) = 5; A051062(a(n)) = 7. - _Reinhard Zumkeller_, Jun 30 2012

%F a((2*n-1)*2^p) = 2*p+1, p >= 0 and n >= 1. - _Johannes W. Meijer_, Feb 07 2013

%F From _Peter Bala_, Feb 07 2016: (Start)

%F a(n) = ( A002487(n-1) + A002487(n+1) )/A002487(n).

%F a(n*2^(k+1) + 2^k) = 2*k + 1 for n,k >= 0; thus a(2*n+1) = 1, a(4*n+2) = 3, a(8*n+4) = 5, a(16*n+8) = 7 and so on. Note the square array ( n*2^(k+1) + 2^k - 1 )n, k>=0 is the transpose of A075300.

%F G.f.: Sum_{n >= 0} (2*n + 1)*x^(2^n)/(1 - x^(2^(n+1))). (End)

%F a(n) = 2*floor(A002487(n-1)/A002487(n))+1 for n > 1. - _I. V. Serov_, Jun 15 2017

%F From _Amiram Eldar_, Nov 29 2022: (Start)

%F Dirichlet g.f.: zeta(s)*(2^s+1)/(2^s-1).

%F Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = 3. (End)

%p nmax:=102: for p from 0 to ceil(simplify(log[2](nmax))) do for n from 1 to ceil(nmax/(p+2)) do a((2*n-1)*2^p):= 2*p+1: od: od: seq(a(n), n=1..nmax); # _Johannes W. Meijer_, Feb 07 2013

%t a[n_] := Sum[(-1)^(d+1)*MoebiusMu[d]*DivisorSigma[0, n/d], {d, Divisors[n]}]; Table[a[n], {n, 1, 102}] (* _Jean-François Alcover_, Dec 31 2012, after _Vladeta Jovovic_ *)

%t f[n_]:=Module[{z=Last[Split[IntegerDigits[n,2]]]},If[Union[z]={0},2* Length[ z]+1,1]]; Array[f,110] (* _Harvey P. Dale_, Jun 16 2019, after Ralf Stephan *)

%t Table[2 IntegerExponent[n, 2] + 1, {n, 120}] (* _Vincenzo Librandi_, Jun 19 2019 *)

%o (Haskell)

%o a037227 = (+ 1) . (* 2) . a007814 -- _Reinhard Zumkeller_, Jun 30 2012

%o (R)

%o maxrow <- 6 # by choice

%o a <- 1

%o for(m in 0:maxrow){

%o for(k in 0:(2^m-1)) {

%o a[2^(m+1) +k] <- a[2^m+k]

%o a[2^(m+1)+2^m+k] <- a[2^m+k]

%o }

%o a[2^(m+1) ] <- a[2^(m+1)] + 2

%o }

%o a

%o # _Yosu Yurramendi_, May 21 2015

%o (PARI) a(n)=2*valuation(n,2)+1 \\ _Charles R Greathouse IV_, May 21 2015

%o (Magma) [2*Valuation(n, 2)+1: n in [1..120]]; // _Vincenzo Librandi_, Jun 19 2019

%o (Python)

%o def A037227(n): return ((~n & n-1).bit_length()<<1)+1 # _Chai Wah Wu_, Jul 05 2022

%Y Cf. A001511, A002487, A007814, A005408, A016825, A017113, A075300, A051062, A220466.

%K nonn,easy,nice,mult

%O 1,2

%A _N. J. A. Sloane_

%E More terms from _Erich Friedman_

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.)