login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A358068
Numbers that share a (decimal) digit with the sum of their proper divisors.
0
6, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 26, 28, 31, 32, 35, 40, 41, 42, 44, 46, 51, 56, 60, 61, 64, 68, 70, 71, 72, 74, 76, 80, 84, 86, 91, 93, 95, 96, 100, 101, 102, 103, 104, 106, 107, 108, 109, 110, 111, 112, 113, 114, 120, 121, 124, 125, 126, 127, 128, 130, 131, 132, 135, 136
OFFSET
1,1
EXAMPLE
72 is in the sequence since 72 shares a digit with the sum of its proper divisors 123. Both numbers share the digit "2".
PROG
(Python)
from itertools import count, islice
from sympy import divisor_sigma
def A358068_gen(startvalue=2): # generator of terms >= startvalue
for n in count(max(startvalue, 2)):
s = set(str(divisor_sigma(n)-n))
if any(d in s for d in set(str(n))):
yield n
A358068_list = list(islice(A358068_gen(), 30)) # Chai Wah Wu, Oct 29 2022
(PARI) isok(n) = #setintersect(Set(digits(sigma(n)-n)), Set(digits(n))); \\ Michel Marcus, Oct 30 2022
CROSSREFS
Sequence in context: A103704 A135998 A242825 * A276136 A152089 A212773
KEYWORD
nonn,base
AUTHOR
Wesley Ivan Hurt, Oct 29 2022
STATUS
approved