OFFSET
1,1
COMMENTS
Presumably a(196) = 0 (see A016016). Conjecture: There is no n > 0 such that the trajectory of n contains an infinite number of palindromes; the trajectory of n eventually leads to a term in the trajectory of some integer k which belongs to sequence A063048, i.e. whose trajectory (presumably) never leads to a palindrome.
EXAMPLE
PROG
(ARIBAS): maxarg := 120; stop := 500; for k := 1 to maxarg do n := k; count := 0; c := 0; while c < stop do if n = int_reverse(n) then inc(count); c := 0; end; inc(c); n := n + int_reverse(n); end; write(count, " " ); end; .
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Klaus Brockhaus, Nov 01 2001
STATUS
approved