OFFSET
1,1
COMMENTS
Numbers 31247524739, 1752475247525, 312475247524739, 1078012078012079, 1078021987912079, 1087912078021979, 1087921987921979, 17524752475247525, and 3124752475247524739 are somewhere in the sequence. - Ed Pegg Jr, Sep 17 2024
EXAMPLE
For k = 12, the reversal of k is 21, 12-1 = 11, 21+1 = 22 and 11 divides 22.
MATHEMATICA
Select[Range[10^7], # < FromDigits[Reverse[IntegerDigits[#]]] && Divisible[FromDigits[Reverse[IntegerDigits[#]]]+1, #-1]&] (* Stefano Spezia, May 29 2024 *)
PROG
(PARI) isok(n) = {d = digits(n); revn = sum(i = 1, #d, d[i]*10^(i - 1)); (revn > n) && (n!=1) && ((revn + 1) % (n - 1) == 0); } \\ Michel Marcus, Aug 22 2013
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Mary L. Sellers (sellersm(AT)cedarville.edu), Jan 22 2000
EXTENSIONS
a(8)-a(11) from Naohiro Nomoto, Jun 24 2001
a(12)-a(15) from Sean A. Irvine, Oct 26 2021
STATUS
approved