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!)
A143992 Numbers n such that the sum of the prime factors of n (counted with multiplicity) is a proper substring of n. 0
18, 144, 150, 168, 175, 198, 220, 230, 242, 246, 255, 322, 366, 444, 624, 1166, 1243, 1323, 1330, 1331, 1462, 1480, 1530, 1992, 2187, 2230, 2240, 2406, 2436, 2625, 2650, 2673, 2730, 2744, 2808, 2925, 3024, 3125, 3182, 3264, 3286, 3366, 3388, 3420, 3484 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
"Proper" is needed in the definition to exclude 4 and all primes.
LINKS
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
Sequence in context: A231951 A126513 A232820 * A127408 A008452 A126900
KEYWORD
base,nonn
AUTHOR
Gil Broussard, Sep 07 2008
EXTENSIONS
Corrected by Harvey P. Dale, Feb 09 2011
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)