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!)
A126933 Quotients arising from sequence A053312. 5

%I #29 Mar 17 2023 02:43:15

%S 1,3,14,132,691,1908,16579,47352,414301,1183713,5474669,27151397,

%T 135646011,678174568,6442602909,18480090517,85533990571,424236721848,

%U 4026815626549,11550150977337,53458791308981,265147974756053,1324666882885839,6622797918981982,62916043734881616,329481245744393933

%N Quotients arising from sequence A053312.

%C Take the decimal number formed by the first n digits of A023396 in reverse order and divide by 2^n.

%C The sequence A053312 gives n-digit numbers consisting entirely of 1s and 2s which are divisible by 2^n. The quotients upon division form the present sequence. The parity of the n-th term here determines the next term in A023396; if odd, it is a 1 and if even, a 2.

%C This was set as a problem in the All Union Mathematical Olympiad of 1971 and can be found in the reference cited here.

%D J. B. Tabov and P. J. Taylor, Methods of Problem Solving, Book 1, Australian Mathematics Trust, 1996.

%H David A. Corneth, <a href="/A126933/b126933.txt">Table of n, a(n) for n = 1..1431</a> (terms <= 10^1000)

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

%F a(n) < 0.3 * 5^n. - _David A. Corneth_, Jun 11 2020

%e a(4) = A053312(4) / 2^4 = 2112 / 16 = 132. - _David A. Corneth_, Jun 11 2020

%o (Python)

%o from itertools import count, islice

%o def A126933_gen(): # generator of terms

%o a, b = 2, 10

%o for n in count(1):

%o a+=b if (c:=a>>n)&1 else b<<1

%o b *= 10

%o yield c

%o A126933_list = list(islice(A126933_gen(),20)) # _Chai Wah Wu_, Mar 16 2023

%Y Cf. A023396, A053312.

%K nonn,easy,base

%O 1,2

%A _Gerry Leversha_, Mar 18 2007

%E Name changed and other minor edits by _Ray Chandler_, Jun 17 2020

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