-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputseqfileComposite.txt
108 lines (107 loc) · 1.56 KB
/
outputseqfileComposite.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
These are the positive composite integers (0 and 1 not being prime or composite) up\ to n
and the difference between n and the sum of n's prime factors
*1 is not included as a factor, even though it is included for perfect numbers
*The factors are summed individually, not as powers...
meaning that if n=25, the sum is 5 + 5 = 10, not 5^2 = 25
=== Every line has the format ===
n --> n - sum(n's prime factors)
4 --> 0
6 --> 1
8 --> 2
9 --> 3
10 --> 3
12 --> 5
14 --> 5
15 --> 7
16 --> 8
18 --> 10
20 --> 11
21 --> 11
22 --> 9
24 --> 15
25 --> 15
26 --> 11
27 --> 18
28 --> 17
30 --> 20
32 --> 22
33 --> 19
34 --> 15
35 --> 23
36 --> 26
38 --> 17
39 --> 23
40 --> 29
42 --> 30
44 --> 29
45 --> 34
46 --> 21
48 --> 37
49 --> 35
50 --> 38
51 --> 31
52 --> 35
54 --> 43
55 --> 39
56 --> 43
57 --> 35
58 --> 27
60 --> 48
62 --> 29
63 --> 50
64 --> 52
65 --> 47
66 --> 50
68 --> 47
69 --> 43
70 --> 56
72 --> 60
74 --> 35
75 --> 62
76 --> 53
77 --> 59
78 --> 60
80 --> 67
81 --> 69
82 --> 39
84 --> 70
85 --> 63
86 --> 41
87 --> 55
88 --> 71
90 --> 77
91 --> 71
92 --> 65
93 --> 59
94 --> 45
95 --> 71
96 --> 83
98 --> 82
99 --> 82
100 --> 86
102 --> 80
104 --> 85
105 --> 90
106 --> 51
108 --> 95
110 --> 92
111 --> 71
112 --> 97
114 --> 90
115 --> 87
116 --> 83
117 --> 98
118 --> 57
119 --> 95
120 --> 106
121 --> 99
122 --> 59
123 --> 79
124 --> 89
125 --> 110
126 --> 111
128 --> 114
129 --> 83
130 --> 110
132 --> 114
133 --> 107