OFFSET
1,1
COMMENTS
Numbers ending in zero are not permitted since the zeros are dropped upon reversal. However, terms with internal zeros such as 90711 are permitted. Conjectures: 1. Sequence is infinite. 2. Revrepfigits are more rare than repfigits.
There are no 12-digit revrepfigits.
REFERENCES
J. Earls, Mathematical Bliss, Pleroma Publications, 2009, pages 11-13. ASIN: B002ACVZ6O [From Jason Earls, Nov 21 2009]
LINKS
Bernardo Boncompagni and Anton Vrba, Table of n, a(n) for n = 1..59
Carlos Rivera, Primepuzzles.net Puzzle 384
Eric Weisstein's World of Mathematics, Keith Number
EXAMPLE
8166 is in the sequence since the sequence 8,1,6,6,21,34,67,128,250, 479,924,1781,3434,6618,..., contains the reversal of 8166.
MATHEMATICA
rKeithQ[n_Integer] := Module[{b = IntegerDigits[n], r, s, k = 0}, If[Mod[n, 10] == 0, False, r = FromDigits[Reverse[b]]; s = Total[b]; While[s < r, AppendTo[b, s]; k++; s = 2*s - b[[k]]]; s == r]]; Select[Range[10, 100000], rKeithQ] (* T. D. Noe, Mar 15 2011 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Jason Earls, Sep 15 2004
EXTENSIONS
More terms from Bernardo Boncompagni and Anton Vrba (antonvrba(AT)yahoo.com), Jan 05 2007
STATUS
approved