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!)
A225684 Nonpalindromic numbers n with property that the sum of the reversed divisors of n is equal to n+1. 0
965, 8150, 12966911, 625261742 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Palindromes are excluded because palindromic primes automatically have this property, and palindromic nonprimes never have it.
Call a number "quasi-perfect" or "slightly excessive" if sigma(n) = 2n+1 (cf. A000203). It is conjectured that no quasi-perfect number exists. The present sequence is a variation that certainly has at least four terms.
a(5) > 10^11. - Donovan Johnson, May 26 2013
a(5) > 10^12. - Giovanni Resta, Aug 19 2019
LINKS
Eric Weisstein's World of Mathematics, Quasi-perfect number
EXAMPLE
The divisors of 965 are 1, 5, 193, 965, and reversing and adding produces 1 + 5 + 391 + 569 = 966.
PROG
(Python)
from sympy import divisors
def ispal(n): s = str(n); return s == s[::-1]
def ok(n):
return not ispal(n) and n+1 == sum(int(str(d)[::-1]) for d in divisors(n))
print([m for m in range(10**4) if ok(m)]) # Michael S. Branicky, Jan 25 2021
CROSSREFS
Sequence in context: A267996 A093232 A252259 * A186468 A345549 A345802
KEYWORD
nonn,base,more
AUTHOR
N. J. A. Sloane, May 19 2013
EXTENSIONS
a(4) from Donovan Johnson, May 19 2013
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 August 13 12:44 EDT 2024. Contains 375142 sequences. (Running on oeis4.)