
Table 1: 36 approximate sums S[2] = S(a, b)for a∈
{2,3, . . . , 9},b∈ {3,4, . . . , 10},a < b.
S(a, b)b= 3 b= 4 b= 5 b= 6
a= 2 2.000000 1.666 667 1.500 000 1.400 000
a= 3 ×1.000000 0.875000 0.800000
a= 4 × × 0.666667 0.600000
a= 5 × × × 0.500000
S(a, b)b= 7 b= 8 b= 9 b= 10
a= 2 1.333333 1.285 714 1.250 000 1.222 222
a= 3 0.750000 0.714 286 0.687 500 0.666 667
a= 4 0.555556 0.523 810 0.500 000 0.481 481
a= 5 0.458333 0.428 571 0.406 250 0.388 889
S(a, b)b= 7 b= 8 b= 9 b= 10
a= 6 0.400000 0.371 429 0.350 000 0.333 333
a= 7 ×0.333333 0.312500 0.296296
a= 8 × × 0.285714 0.269841
a= 9 × × × 0.250000
are written into Table 1.
The approximate values of 36 sums of the type
S[3] = S(2, b, c), where b∈ {3,4,5,6,7,8,9,10}
and c∈ {4,5,6,7,8,9,10,11},b<c, i.e. of the
sums
S(2,3,4), S(2,3,5), S(2,3,6), . . .
. . . , S(2,9,10), S(2,9,11), S(2,10,11),
for parameter p= 100, rounded to 6 decimals and
obtained by two for statements
B:={3,4,5,6,7,8,9,10};
C:={4,5,6,7,8,9,10,11};
for b in B do
for c in C do
if b < c then
partabc(100,2,b,c);
end if;
end do;
end do;
are written into Table 2.
The approximate values of 36 sums of the type
S[4] = S(2,3, c, d), where c∈ {4,5,6,7,8,9,
10,11}and d∈ {5,6,7,8,9,10,11,12},c < d, i.e.
of the sums
S(2,3,4,5), S(2,3,4,6), S(2,3,4,7), . . .
. . . , S(2,3,10,11), S(2,3,10,12), S(2,3,11,12),
for parameter p= 100, rounded to 6 decimals and
obtained by two for statements
Table 2: 36 approximate sums S[3] = S(2, b, c)for
b∈ {3,4, . . . , 10},c∈ {4,5, . . . , 11},b < c.
S(2, b, c)c= 4 c= 5 c= 6 c= 7
b= 3 3.000000 2.750000 2.600000 2.500000
b= 4 ×2.333333 2.200000 2.111111
b= 5 × × 2.000000 1.916667
b= 6 ×××1.800000
S(2, b, c)c= 8 c= 9 c= 10 c= 11
b= 3 2.428571 2.375000 2.333333 2.300000
b= 4 2.047619 2.000000 1.962963 1.933333
b= 5 1.857143 1.812500 1.777778 1.750000
b= 6 1.742857 1.700000 1.666667 1.640000
S(2, b, c)c= 8 c= 9 c= 10 c= 11
b= 7 1.666667 1.625000 1.592593 1.566667
b= 8 ×1.571429 1.539683 1.514286
b= 9 × × 1.500000 1.475000
b= 10 ×××1.444444
C:={4,5,6,7,8,9,10,11};
D1:={5,6,7,8,9,10,11,12};
for c in C do
for d in D1 do
if c < d then
partabcd(100,2,3,c,d);
end if;
end do;
end do;
are written into Table 3.
Table 3: 36 approximate sums S[4] = S(2,3, c, d)for
c∈ {4,5, . . . , 11},d∈ {5,6, . . . , 12},c < d.
S(2,3, c, d)d= 5 d= 6 d= 7 d= 8
c= 4 4.000000 3.800000 3.666667 3.571429
c= 5 ×3.500000 3.375000 3.285714
c= 6 × × 3.200000 3.114286
c= 7 ×××3.000000
S(2,3, c, d)d= 9 d= 10 d= 11 d= 12
c= 4 3.500000 3.444444 3.400000 3.363636
c= 5 3.218750 3.166667 3.125000 3.090909
c= 6 3.050000 3.000000 2.960000 2.927273
c= 7 2.937500 2.888889 2.850000 2.818182
S(2,3, c, d)d= 9 d= 10 d= 11 d= 12
c= 8 2.857143 2.809524 2.771429 2.740260
c= 9 ×2.750000 2.712500 2.681818
c= 10 × × 2.666667 2.636364
c= 11 ×××2.600000
Note that the calculation of these 3·36 = 108
approximate values of sums S[2],S[3] and S[4] took
EQUATIONS
DOI: 10.37394/232021.2022.2.18