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!)
A160078 Positive integers which apparently never result in a palindrome under repeated applications of the function f(x) = x + (x with digits in binary expansion reversed). Binary analog of Lychrel numbers. 0
22, 26, 28, 35, 37, 41, 45, 46, 47, 49, 60, 61, 67, 75, 77, 78, 84, 86, 89, 90, 93, 94, 95, 97, 105, 106, 108, 110, 116, 120, 122, 124, 125, 131, 135, 139, 141, 147, 149, 152 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Number of iterations equals 1000, but all non-seeded numbers (under) fall out in 32 iterations
LINKS
Diofant.ru Problem: binary Lychrel numbers under 1024. (Russian language!) [From Dremov Dmitry (dremovd(AT)gmail.com), May 03 2009]
EXAMPLE
22 = 10110
10110 + 01101 = 100011
100011 + 110001 = 1010100...
Not forming a palindrome after 1000 iterations.
PROG
(Python)
from sympy.ntheory.digits import digits
def make_int(l, b):
return int(''.join(str(d) for d in l), b)
maxn = 102
it = []
for i in range( 1, maxn ) :
d = digits( i, 2 )[1:]
isLychrel = True
for j in range( 1000 ) :
d = digits( make_int( d, 2 ) + make_int( d[::-1], 2 ), 2 )[1:]
if d == d[::-1] :
it.append( j + 1 )
isLychrel = False
break
if isLychrel :
it.append( 0 )
print('Maximum iterations for non-seed numbers', max( it ))
Lychrel = []
for i in range( len(it) ) :
if it[i] == 0 :
Lychrel.append( i + 1 )
print('Count of binary Lychrel numbers', len( Lychrel ))
print('All binary lichler under', maxn)
print('Decimal form', Lychrel)
print('Binary form', list(map( lambda x: ''.join( map( str, toSystem( x, 2 ) ) ), Lychrel )))
CROSSREFS
Binary version of A023108.
Sequence in context: A124177 A260990 A260991 * A066059 A084891 A162422
KEYWORD
base,nonn
AUTHOR
Dremov Dmitry (dremovd(AT)gmail.com), May 01 2009
STATUS
approved

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