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!)
A141707 Least k>0 such that (2n-1)k is palindromic in base 2. 4

%I #13 Mar 20 2022 18:29:16

%S 1,1,1,1,1,3,5,1,1,27,1,89,13,1,49,1,1,13,69,5,25,3,1,103,29,1,63,3,9,

%T 103,7,1,1,19,37,147,1,13,3,19,11,45,1,37,23,3,1,27,61,1,233,47,13,1,

%U 21,23,59,525,5,1,93,23,41,1,1,49,27,13,187,87,269,15,111,13,29,7,1,13,3

%N Least k>0 such that (2n-1)k is palindromic in base 2.

%C Even numbers cannot be palindromic in base 2 (unless leading zeros are considered), that's why we search only for odd numbers 2n-1 the k-values such that k(2n-1) is palindromic in base 2. Obviously they are necessarily also odd.

%C a(A044051(n)) = 1. - _Reinhard Zumkeller_, Apr 20 2015

%H Reinhard Zumkeller, <a href="/A141707/b141707.txt">Table of n, a(n) for n = 1..10000</a>

%e a(1..5)=1 since 1,3,5,7,9 are already palindromic in base 2.

%e a(6)=3 since 2*6-1=11 and 2*11=22 are not palindromic in base 2, but 3*11=33 is.

%t lkp[n_]:=Module[{k=1,n2=2n-1},While[IntegerDigits[k*n2,2]!= Reverse[ IntegerDigits[ k*n2,2]],k++];k]; Array[lkp,80] (* _Harvey P. Dale_, Mar 19 2016 *)

%o (PARI) A141707(n,L=10^9)={ n=2*n-1; forstep(k=1,L,2, binary(k*n)-vecextract(binary(k*n),"-1..1") || return(k))}

%o (Haskell)

%o a141707 n = head [k | k <- [1, 3 ..], a178225 (k * (2 * n - 1)) == 1]

%o -- _Reinhard Zumkeller_, Apr 20 2015

%o (Python)

%o def binpal(n): b = bin(n)[2:]; return b == b[::-1]

%o def a(n):

%o m = 2*n - 1

%o km = m

%o while not binpal(km): km += m

%o return km//m

%o print([a(n) for n in range(1, 80)]) # _Michael S. Branicky_, Mar 20 2022

%Y Cf. A050782, A141708, A178225, A044051.

%K base,easy,nice,nonn

%O 1,6

%A _M. F. Hasler_, Jul 17 2008

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