A023415 If any power of 2 ends with k 8's and 9's, they must be the first k terms of this sequence in reverse order.
8, 8, 8, 9, 8, 9, 9, 8, 9, 8, 9, 8, 8, 9, 9, 8, 9, 8, 9, 9, 9, 8, 8, 8, 8, 9, 8, 8, 8, 8, 9, 9, 9, 9, 8, 9, 8, 8, 9, 9, 8, 8, 9, 9, 8, 9, 8, 8, 9, 8, 9, 8, 9, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 8, 9, 8, 8, 8, 9, 9, 8, 8, 9, 8, 8, 9, 9, 8, 8, 9, 9, 9, 8, 9, 9, 9, 9, 9, 9, 8, 8, 9, 8, 8, 9, 9, 9, 9, 9, 9, 8, 8, 8, 9, 9, 8, 8, 8
Offset: 1
Links
- Ray Chandler, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A145679.
Programs
-
Python
# upper limit of backward value of 2^n a,i=8,0; x=a while i < 200: i+=1; print(x, end=',') if a%2**(i+1) == 0: x=8 else: x=9 a+=x*10**i # Cezary Glowacz, Mar 11 2017
Comments