OFFSET
1,1
COMMENTS
"Proper" is needed in the definition to exclude 4 and all primes.
EXAMPLE
a(3)=144=2*2*2*2*3*3 and 2+2+2+2+3+3=14 and 14 is a substring of 144.
MATHEMATICA
pfQ[n_]:=Module[{x=Total[Times@@@FactorInteger[n]], idx}, idx=IntegerDigits[x]; MemberQ[Partition[IntegerDigits[n], Length[idx], 1], idx]&&x!=n]
Select[Range[0, 3500], pfQ] (* Harvey P. Dale, Feb 09 2011 *)
PROG
(Python)
from sympy import factorint, isprime
A143992_list = [n for n in range(2, 10**6) if n != 4 and not isprime(n) and str(sum(a*b for a, b in factorint(n).items())) in str(n)] # Chai Wah Wu, Aug 14 2021
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Gil Broussard, Sep 07 2008
EXTENSIONS
Corrected by Harvey P. Dale, Feb 09 2011
STATUS
approved