A248323 Numbers n which appear at least twice in A037278(n), concatenation of their divisors written in base 10.
11, 12, 42, 84, 124, 135, 248, 325, 366, 510, 550, 555, 624, 650, 714, 1010, 1111, 1525, 1734, 2510, 3913, 4020, 5100, 5500, 5610, 5625, 8040, 11111, 13515, 16575, 21175, 24104, 25500, 28160, 34170, 35250, 35610, 36800, 37444, 44919, 50100, 51020, 51102, 51250, 52000
Offset: 1
Examples
The divisors of 42 are 1, 2, 3, 6, 7, 14, 21, 42, and "42" appears twice in their concatenation A037278(42) = "12367142142".
Links
- Chai Wah Wu, Table of n, a(n) for n = 1..340
- E. Angelini, Divisors showing a string, SeqFan list, Oct 03 2014
Crossrefs
Cf. A037278.
Programs
-
PARI
is(n)={d=concat(apply(digits,divisors(n)));n=digits(n);for(j=0,#d-#n-1,for(i=1,#n,d[i+j]==n[i]||next(2));return(1))}
-
Python
from sympy import divisors import re A248323_list = [n for n in range(1,10**7) if len(list(re.finditer('(?='+str(n)+')',''.join([str(d) for d in divisors(n)])))) > 1] # Chai Wah Wu, Nov 01 2014
Comments