Vorige Pagina About the Author

' Generates Inlaid Magic Squares of order 20
' Based on Order 5 Magic Sub Squares with Different Magic Sums

' Tested with Office 2007 under Windows 7

Sub Priem20k4()

Dim a1(750), a(25), a20(400), b1(48355), b(48355), c(25)

y = MsgBox("Locked", vbCritical, "Routine Priem20k4")
End
    
    n1 = 0: n9 = 0: n10 = 0: k1 = 1: k2 = 1
    
    Sheets("Klad1").Select
    
    t1 = Timer

For j200 = 2 To 1228
s20 = Sheets("Input20").Cells(j200, 34).Value

Erase a20

'Define Center Elements

For i1 = 1 To 16
    a(i1) = Sheets("Input20").Cells(j200, i1).Value
Next i1
a20(43) = a(1):   a20(48) = a(2):   a20(53) = a(3):   a20(58) = a(4):
a20(143) = a(5):  a20(148) = a(6):  a20(153) = a(7):  a20(158) = a(8):
a20(243) = a(9):  a20(248) = a(10): a20(253) = a(11): a20(258) = a(12):
a20(343) = a(13): a20(348) = a(14): a20(353) = a(15): a20(358) = a(16):

For j101 = 18 To 33
j100 = Sheets("Input20").Cells(j200, j101).Value

'   Define variables

    Cntr3 = Sheets("Pairs7").Cells(j100, 6).Value      'Mid
    s1 = 5 * Cntr3
    nVar1 = Sheets("Pairs7").Cells(j100, 9).Value
   
    For i1 = 1 To nVar1
        a1(i1) = Sheets("Pairs7").Cells(j100, 9 + i1).Value
    Next i1
    m1 = 1: m2 = nVar1
    If a1(1) = 1 Then m1 = 2: m2 = m2 - 1
    
    Erase b1
    For i1 = m1 To m2
        b1(a1(i1)) = a1(i1)
    Next i1

'   Remove Used Primes

    For i1 = 1 To 400
        b1(a20(i1)) = 0
    Next i1

'   Generate Concentric Magic Squares (5 x 5)

a(13) = 0.2 * s1: b(a(13)) = a(13)

For j19 = m1 To m2                                           'a(19)   Inner Square
If b1(a1(j19)) = 0 Then GoTo 190
If b(a1(j19)) = 0 Then b(a1(j19)) = a1(j19): c(19) = a1(j19) Else GoTo 190
a(19) = a1(j19)

a(7) = 0.4 * s1 - a(19)
If a(7) < a1(m1) Or a(7) > a1(m2) Then GoTo 70
If b1(a(7)) = 0 Then GoTo 70
If b(a(7)) = 0 Then b(a(7)) = a(7): c(7) = a(7) Else GoTo 70

For j18 = m1 To m2                                          'a(18)    Inner Square
If b1(a1(j18)) = 0 Then GoTo 180
If b(a1(j18)) = 0 Then b(a1(j18)) = a1(j18): c(18) = a1(j18) Else GoTo 180
a(18) = a1(j18)

a(17) = 0.6 * s1 - a(18) - a(19)
If a(17) < a1(m1) Or a(17) > a1(m2) Then GoTo 170
If b1(a(17)) = 0 Then GoTo 170
If b(a(17)) = 0 Then b(a(17)) = a(17): c(17) = a(17) Else GoTo 170

a(14) = 0.8 * s1 - a(18) - 2 * a(19)
If a(14) < a1(m1) Or a(14) > a1(m2) Then GoTo 140
If b1(a(14)) = 0 Then GoTo 140
If b(a(14)) = 0 Then b(a(14)) = a(14): c(14) = a(14) Else GoTo 140

a(12) = 0.4 * s1 - a(14)
If a(12) < a1(m1) Or a(12) > a1(m2) Then GoTo 120
If b1(a(12)) = 0 Then GoTo 120
If b(a(12)) = 0 Then b(a(12)) = a(12): c(12) = a(12) Else GoTo 120

a(9) = 0.4 * s1 - a(17)
If a(9) < a1(m1) Or a(9) > a1(m2) Then GoTo 90
If b1(a(9)) = 0 Then GoTo 90
If b(a(9)) = 0 Then b(a(9)) = a(9): c(9) = a(9) Else GoTo 90

a(8) = 0.4 * s1 - a(18)
If a(8) < a1(m1) Or a(8) > a1(m2) Then GoTo 80
If b1(a(8)) = 0 Then GoTo 80
If b(a(8)) = 0 Then b(a(8)) = a(8): c(8) = a(8) Else GoTo 80

For j25 = Int(m2 / 2) To m2                                 'a(25)  Border
If b1(a1(j25)) = 0 Then GoTo 250
If b(a1(j25)) = 0 Then b(a1(j25)) = a1(j25): c(25) = a1(j25) Else GoTo 250
a(25) = a1(j25)

a(1) = 0.4 * s1 - a(25)
If a(1) < a1(m1) Or a(1) > a1(m2) Then GoTo 10
If b1(a(1)) = 0 Then GoTo 10
If b(a(1)) = 0 Then b(a(1)) = a(1): c(1) = a(1) Else GoTo 10

For j24 = m1 To m2                                          'a(24)
If b1(a1(j24)) = 0 Then GoTo 240
If b(a1(j24)) = 0 Then b(a1(j24)) = a1(j24): c(24) = a1(j24) Else GoTo 240
a(24) = a1(j24)

a(4) = 0.4 * s1 - a(24)
If a(4) < a1(m1) Or a(4) > a1(m2) Then GoTo 40
If b1(a(4)) = 0 Then GoTo 40
If b(a(4)) = 0 Then b(a(4)) = a(4): c(4) = a(4) Else GoTo 40

For j23 = m1 To m2                                          'a(23)
If b1(a1(j23)) = 0 Then GoTo 230
If b(a1(j23)) = 0 Then b(a1(j23)) = a1(j23): c(23) = a1(j23) Else GoTo 230
a(23) = a1(j23)

a(3) = 0.4 * s1 - a(23)
If a(3) < a1(m1) Or a(3) > a1(m2) Then GoTo 30
If b1(a(3)) = 0 Then GoTo 30
If b(a(3)) = 0 Then b(a(3)) = a(3): c(3) = a(3) Else GoTo 30

For j22 = m1 To m2                                          'a(22)
If b1(a1(j22)) = 0 Then GoTo 220
If b(a1(j22)) = 0 Then b(a1(j22)) = a1(j22): c(22) = a1(j22) Else GoTo 220
a(22) = a1(j22)

a(21) = s1 - a(22) - a(23) - a(24) - a(25)
If a(21) < a1(m1) Or a(21) > a1(m2) Then GoTo 210
If b1(a(21)) = 0 Then GoTo 210
If b(a(21)) = 0 Then b(a(21)) = a(21): c(21) = a(21) Else GoTo 210

a(5) = 0.4 * s1 - a(21)
If a(5) < a1(m1) Or a(5) > a1(m2) Then GoTo 50
If b1(a(5)) = 0 Then GoTo 50
If b(a(5)) = 0 Then b(a(5)) = a(5): c(5) = a(5) Else GoTo 50

a(2) = 0.4 * s1 - a(22)
If a(2) < a1(m1) Or a(2) > a1(m2) Then GoTo 20
If b1(a(2)) = 0 Then GoTo 20
If b(a(2)) = 0 Then b(a(2)) = a(2): c(2) = a(2) Else GoTo 20

For j20 = m1 To m2                                          'a(20)
If b1(a1(j20)) = 0 Then GoTo 200
If b(a1(j20)) = 0 Then b(a1(j20)) = a1(j20): c(20) = a1(j20) Else GoTo 200
a(20) = a1(j20)

a(16) = 0.4 * s1 - a(20)
If a(16) < a1(m1) Or a(16) > a1(m2) Then GoTo 160
If b1(a(16)) = 0 Then GoTo 160
If b(a(16)) = 0 Then b(a(16)) = a(16): c(16) = a(16) Else GoTo 160

For j15 = m1 To m2                                           'a(15)
If b1(a1(j15)) = 0 Then GoTo 150
If b(a1(j15)) = 0 Then b(a1(j15)) = a1(j15): c(15) = a1(j15) Else GoTo 150
a(15) = a1(j15)

a(11) = 0.4 * s1 - a(15)
If a(11) < a1(m1) Or a(11) > a1(m2) Then GoTo 110:
If b1(a(11)) = 0 Then GoTo 110
If b(a(11)) = 0 Then b(a(11)) = a(11): c(11) = a(11) Else GoTo 110

a(10) = 0.6 * s1 - a(15) - a(20) + a(21) - a(25)
If a(10) < a1(m1) Or a(10) > a1(m2) Then GoTo 100:
If b1(a(10)) = 0 Then GoTo 100
If b(a(10)) = 0 Then b(a(10)) = a(10): c(10) = a(10) Else GoTo 100

a(6) = 0.4 * s1 - a(10)
If a(6) < a1(m1) Or a(6) > a1(m2) Then GoTo 60:
If b1(a(6)) = 0 Then GoTo 60
If b(a(6)) = 0 Then b(a(6)) = a(6): c(6) = a(6) Else GoTo 60


'                         Exclude solutions with identical numbers

                          GoSub 800: If fl1 = 0 Then GoTo 55
                          n10 = n10 + 1: GoSub 750            'Assign to a25()

                          Erase b, c: GoTo 5                  'Assign only first square


55
    b(c(6)) = 0: c(6) = 0
60  b(c(10)) = 0: c(10) = 0
100 b(c(11)) = 0: c(11) = 0
110 b(c(15)) = 0: c(15) = 0
150 Next j15

    b(c(16)) = 0: c(16) = 0
160 b(c(20)) = 0: c(20) = 0
200 Next j20
    
    b(c(2)) = 0: c(2) = 0
20  b(c(5)) = 0: c(5) = 0
50  b(c(21)) = 0: c(21) = 0
210 b(c(22)) = 0: c(22) = 0
220 Next j22

    b(c(3)) = 0: c(3) = 0
30  b(c(23)) = 0: c(23) = 0
230 Next j23

    b(c(4)) = 0: c(4) = 0
40  b(c(24)) = 0: c(24) = 0
240 Next j24

    b(c(1)) = 0: c(1) = 0
10  b(c(25)) = 0: c(25) = 0
250 Next j25

    b(c(8)) = 0: c(8) = 0
80  b(c(9)) = 0: c(9) = 0
90  b(c(12)) = 0: c(12) = 0
120 b(c(14)) = 0: c(14) = 0
140 b(c(17)) = 0: c(17) = 0
170 b(c(18)) = 0: c(18) = 0
180 Next j18

    b(c(7)) = 0: c(7) = 0
70  b(c(19)) = 0: c(19) = 0
190 Next j19

'   Not found
    Erase b, c: n10 = 0: GoTo 2000

5
    If n10 = 16 Then
        GoSub 850:
        If fl1 = 1 Then
           n9 = n9 + 1: GoSub 660   'Print results (squares)
           If n9 = 8 Then End
           n10 = 0: GoTo 2000
        End If
    End If

      Next j101

2000  n10 = 0
      Next j200

   t2 = Timer
    
   t10 = Str(t2 - t1) + " sec., " + Str(n9) + " Solutions"
   y = MsgBox(t10, 0, "Routine Priem20k4")

End

'   Assign to a20()

750 Select Case n10

    Case 1
    a20(1) = a(1):   a20(2) = a(2):   a20(3) = a(3):   a20(4) = a(4):   a20(5) = a(5):
    a20(21) = a(6):  a20(22) = a(7):  a20(23) = a(8):  a20(24) = a(9):  a20(25) = a(10):
    a20(41) = a(11): a20(42) = a(12): a20(43) = a(13): a20(44) = a(14): a20(45) = a(15):
    a20(61) = a(16): a20(62) = a(17): a20(63) = a(18): a20(64) = a(19): a20(65) = a(20):
    a20(81) = a(21): a20(82) = a(22): a20(83) = a(23): a20(84) = a(24): a20(85) = a(25):
                    
    Case 2
    a20(6) = a(1):   a20(7) = a(2):   a20(8) = a(3):   a20(9) = a(4):   a20(10) = a(5):
    a20(26) = a(6):  a20(27) = a(7):  a20(28) = a(8):  a20(29) = a(9):  a20(30) = a(10):
    a20(46) = a(11): a20(47) = a(12): a20(48) = a(13): a20(49) = a(14): a20(50) = a(15):
    a20(66) = a(16): a20(67) = a(17): a20(68) = a(18): a20(69) = a(19): a20(70) = a(20):
    a20(86) = a(21): a20(87) = a(22): a20(88) = a(23): a20(89) = a(24): a20(90) = a(25):
                    
    Case 3
    a20(11) = a(1):  a20(12) = a(2):  a20(13) = a(3):  a20(14) = a(4):  a20(15) = a(5):
    a20(31) = a(6):  a20(32) = a(7):  a20(33) = a(8):  a20(34) = a(9):  a20(35) = a(10):
    a20(51) = a(11): a20(52) = a(12): a20(53) = a(13): a20(54) = a(14): a20(55) = a(15):
    a20(71) = a(16): a20(72) = a(17): a20(73) = a(18): a20(74) = a(19): a20(75) = a(20):
    a20(91) = a(21): a20(92) = a(22): a20(93) = a(23): a20(94) = a(24): a20(95) = a(25):
                    
    Case 4
    a20(16) = a(1):  a20(17) = a(2):  a20(18) = a(3):  a20(19) = a(4):  a20(20) = a(5):
    a20(36) = a(6):  a20(37) = a(7):  a20(38) = a(8):  a20(39) = a(9):  a20(40) = a(10):
    a20(56) = a(11): a20(57) = a(12): a20(58) = a(13): a20(59) = a(14): a20(60) = a(15):
    a20(76) = a(16): a20(77) = a(17): a20(78) = a(18): a20(79) = a(19): a20(80) = a(20):
    a20(96) = a(21): a20(97) = a(22): a20(98) = a(23): a20(99) = a(24): a20(100) = a(25):
                    
    Case 5
    a20(101) = a(1):  a20(102) = a(2):  a20(103) = a(3):  a20(104) = a(4):  a20(105) = a(5):
    a20(121) = a(6):  a20(122) = a(7):  a20(123) = a(8):  a20(124) = a(9):  a20(125) = a(10):
    a20(141) = a(11): a20(142) = a(12): a20(143) = a(13): a20(144) = a(14): a20(145) = a(15):
    a20(161) = a(16): a20(162) = a(17): a20(163) = a(18): a20(164) = a(19): a20(165) = a(20):
    a20(181) = a(21): a20(182) = a(22): a20(183) = a(23): a20(184) = a(24): a20(185) = a(25):
                    
    Case 6
    a20(106) = a(1):  a20(107) = a(2):  a20(108) = a(3):  a20(109) = a(4):  a20(110) = a(5):
    a20(126) = a(6):  a20(127) = a(7):  a20(128) = a(8):  a20(129) = a(9):  a20(130) = a(10):
    a20(146) = a(11): a20(147) = a(12): a20(148) = a(13): a20(149) = a(14): a20(150) = a(15):
    a20(166) = a(16): a20(167) = a(17): a20(168) = a(18): a20(169) = a(19): a20(170) = a(20):
    a20(186) = a(21): a20(187) = a(22): a20(188) = a(23): a20(189) = a(24): a20(190) = a(25):
                    
    Case 7
    a20(111) = a(1):  a20(112) = a(2):  a20(113) = a(3):  a20(114) = a(4):  a20(115) = a(5):
    a20(131) = a(6):  a20(132) = a(7):  a20(133) = a(8):  a20(134) = a(9):  a20(135) = a(10):
    a20(151) = a(11): a20(152) = a(12): a20(153) = a(13): a20(154) = a(14): a20(155) = a(15):
    a20(171) = a(16): a20(172) = a(17): a20(173) = a(18): a20(174) = a(19): a20(175) = a(20):
    a20(191) = a(21): a20(192) = a(22): a20(193) = a(23): a20(194) = a(24): a20(195) = a(25):
                    
    Case 8
    a20(116) = a(1):  a20(117) = a(2):  a20(118) = a(3):  a20(119) = a(4):  a20(120) = a(5):
    a20(136) = a(6):  a20(137) = a(7):  a20(138) = a(8):  a20(139) = a(9):  a20(140) = a(10):
    a20(156) = a(11): a20(157) = a(12): a20(158) = a(13): a20(159) = a(14): a20(160) = a(15):
    a20(176) = a(16): a20(177) = a(17): a20(178) = a(18): a20(179) = a(19): a20(180) = a(20):
    a20(196) = a(21): a20(197) = a(22): a20(198) = a(23): a20(199) = a(24): a20(200) = a(25):
                    
    Case 9
    a20(201) = a(1):  a20(202) = a(2):  a20(203) = a(3):  a20(204) = a(4):  a20(205) = a(5):
    a20(221) = a(6):  a20(222) = a(7):  a20(223) = a(8):  a20(224) = a(9):  a20(225) = a(10):
    a20(241) = a(11): a20(242) = a(12): a20(243) = a(13): a20(244) = a(14): a20(245) = a(15):
    a20(261) = a(16): a20(262) = a(17): a20(263) = a(18): a20(264) = a(19): a20(265) = a(20):
    a20(281) = a(21): a20(282) = a(22): a20(283) = a(23): a20(284) = a(24): a20(285) = a(25):
            
    Case 10
    a20(206) = a(1):  a20(207) = a(2):  a20(208) = a(3):  a20(209) = a(4):  a20(210) = a(5):
    a20(226) = a(6):  a20(227) = a(7):  a20(228) = a(8):  a20(229) = a(9):  a20(230) = a(10):
    a20(246) = a(11): a20(247) = a(12): a20(248) = a(13): a20(249) = a(14): a20(250) = a(15):
    a20(266) = a(16): a20(267) = a(17): a20(268) = a(18): a20(269) = a(19): a20(270) = a(20):
    a20(286) = a(21): a20(287) = a(22): a20(288) = a(23): a20(289) = a(24): a20(290) = a(25):
                    
    Case 11
    a20(211) = a(1):  a20(212) = a(2):  a20(213) = a(3):  a20(214) = a(4):  a20(215) = a(5):
    a20(231) = a(6):  a20(232) = a(7):  a20(233) = a(8):  a20(234) = a(9):  a20(235) = a(10):
    a20(251) = a(11): a20(252) = a(12): a20(253) = a(13): a20(254) = a(14): a20(255) = a(15):
    a20(271) = a(16): a20(272) = a(17): a20(273) = a(18): a20(274) = a(19): a20(275) = a(20):
    a20(291) = a(21): a20(292) = a(22): a20(293) = a(23): a20(294) = a(24): a20(295) = a(25):
                    
    Case 12
    a20(216) = a(1):  a20(217) = a(2):  a20(218) = a(3):  a20(219) = a(4):  a20(220) = a(5):
    a20(236) = a(6):  a20(237) = a(7):  a20(238) = a(8):  a20(239) = a(9):  a20(240) = a(10):
    a20(256) = a(11): a20(257) = a(12): a20(258) = a(13): a20(259) = a(14): a20(260) = a(15):
    a20(276) = a(16): a20(277) = a(17): a20(278) = a(18): a20(279) = a(19): a20(280) = a(20):
    a20(296) = a(21): a20(297) = a(22): a20(298) = a(23): a20(299) = a(24): a20(300) = a(25):
                    
    Case 13
    a20(301) = a(1):  a20(302) = a(2):  a20(303) = a(3):  a20(304) = a(4):  a20(305) = a(5):
    a20(321) = a(6):  a20(322) = a(7):  a20(323) = a(8):  a20(324) = a(9):  a20(325) = a(10):
    a20(341) = a(11): a20(342) = a(12): a20(343) = a(13): a20(344) = a(14): a20(345) = a(15):
    a20(361) = a(16): a20(362) = a(17): a20(363) = a(18): a20(364) = a(19): a20(365) = a(20):
    a20(381) = a(21): a20(382) = a(22): a20(383) = a(23): a20(384) = a(24): a20(385) = a(25):
                    
    Case 14
    a20(306) = a(1):  a20(307) = a(2):  a20(308) = a(3):  a20(309) = a(4):  a20(310) = a(5):
    a20(326) = a(6):  a20(327) = a(7):  a20(328) = a(8):  a20(329) = a(9):  a20(330) = a(10):
    a20(346) = a(11): a20(347) = a(12): a20(348) = a(13): a20(349) = a(14): a20(350) = a(15):
    a20(366) = a(16): a20(367) = a(17): a20(368) = a(18): a20(369) = a(19): a20(370) = a(20):
    a20(386) = a(21): a20(387) = a(22): a20(388) = a(23): a20(389) = a(24): a20(390) = a(25):
            
    Case 15
    a20(311) = a(1):  a20(312) = a(2):  a20(313) = a(3):  a20(314) = a(4):  a20(315) = a(5):
    a20(331) = a(6):  a20(332) = a(7):  a20(333) = a(8):  a20(334) = a(9):  a20(335) = a(10):
    a20(351) = a(11): a20(352) = a(12): a20(353) = a(13): a20(354) = a(14): a20(355) = a(15):
    a20(371) = a(16): a20(372) = a(17): a20(373) = a(18): a20(374) = a(19): a20(375) = a(20):
    a20(391) = a(21): a20(392) = a(22): a20(393) = a(23): a20(394) = a(24): a20(395) = a(25):
                    
    Case 16
    a20(316) = a(1):  a20(317) = a(2):  a20(318) = a(3):  a20(319) = a(4):  a20(320) = a(5):
    a20(336) = a(6):  a20(337) = a(7):  a20(338) = a(8):  a20(339) = a(9):  a20(340) = a(10):
    a20(356) = a(11): a20(357) = a(12): a20(358) = a(13): a20(359) = a(14): a20(360) = a(15):
    a20(376) = a(16): a20(377) = a(17): a20(378) = a(18): a20(379) = a(19): a20(380) = a(20):
    a20(396) = a(21): a20(397) = a(22): a20(398) = a(23): a20(399) = a(24): a20(400) = a(25):

    End Select
    Return

'   Print results: squares a15()

660 n1 = n1 + 1
    If n1 = 2 Then
        n1 = 1: k1 = k1 + 21: k2 = 1
    Else
        If n9 > 1 Then k2 = k2 + 21
    End If
    
    Cells(k1, k2 + 1).Select
    Cells(k1, k2 + 1).Font.Color = -4165632
    Cells(k1, k2 + 1).Value = s20
    
    i3 = 0
    For i1 = 1 To 20
        For i2 = 1 To 20
            i3 = i3 + 1
            Cells(k1 + i1, k2 + i2).Value = a20(i3)
        Next i2
    Next i1
    Return

'   Exclude solutions with identical numbers a()

800 fl1 = 1
    For j1 = 1 To 25
       a2 = a(j1)
       For j2 = (1 + j1) To 25
           If a2 = a(j2) Then fl1 = 0: Return
       Next j2
    Next j1
    Return

'   Exclude solutions with identical numbers a20()

850 fl1 = 1
    For j1 = 1 To 400
       a2 = a20(j1): If a2 = 0 Then GoTo 860
       For j2 = (1 + j1) To 400
           If a2 = a20(j2) Then fl1 = 0: Return
       Next j2
860 Next j1
    Return

End Sub


Vorige Pagina About the Author