Sunday 8 March 2020

Prime Weeks

As I number my days, I find that my prime days come and go but every Sunday, the day on which I was born, I know that it can never be a prime day because, whatever its number, it will always be divisible by 7. Today for example is a Sunday and I turned 25907 days old. Now 25907 = 7 x 3701 and so 3701 weeks have now elapsed since I was born. Of interest however, is the fact that 3701 is prime. There have been 517 Sundays where the number was biprime or semiprime.

𝓟𝓡𝓘𝓜𝓔 𝓦𝓔𝓔𝓚


I've chosen to call such weeks, beginning on Sunday, prime weeks. They can never occur consecutively except in the case of the second and third weeks. Each prime week will have its own character as determined by the nature of the larger prime. For example, what is significant about today's 3701?

𝓢𝓤𝓜 𝓞𝓕 𝓢𝓔𝓥𝓔𝓝 𝓟𝓡𝓘𝓜𝓔𝓢


One interesting property is that it is a prime that is itself the sum of seven consecutive primes. This property defines OEIS A082246 whose members, up to and including 3701, consist of the primes:
197, 223, 251, 281, 311, 401, 431, 463, 523, 593, 659, 719, 757, 827, 863, 947, 991, 1063, 1171, 1753, 1901, 2347, 2393, 2647, 2689, 2731, 2777, 2819, 2953, 3347, 3389, 3533, 3643, 3701
It's easy enough to generate this sequence from the following SageMath code:
P=Primes()
L=[]
for i in range(0,1000):
    sum=0
    for j in range(0,7):
        sum+=P[i+j]
    if is_prime(sum):
        L.append(sum)
    if sum==3701:
        break
print(L)
Click here for a SageMathCell permalink to the above code. Thus the themes of primes and sevens are echoed in this property of 3701.

𝓗𝓞𝓜𝓔 𝓟𝓡𝓘𝓜𝓔


3701 is also a member of OEIS A133960: home primes whose homeliness is 3. Without going into the definition of what is meant by a home prime and homeliness (here is the Wikipedia link), it can be seen that 206 = 2 x 103 --> 2103 = 3 x 701 --> 3701 and thus 3701 is a home prime of homeliness 3 because 206, 2103 and 3701 all lead to 3701.

The number 3701 attracts 203 entries in the OEIS so there are probably other properties that are of interest but that will suffice for now. Here is the SageMath code to generate the list of numbered Sundays, up to and including 25907, that start prime weeks:
L=[]
P=Primes()
number=0
for p in P:
        number=p*7
        L.append(number)
        if number==25907:
            break
print(L) 
Here is the permalink.

My next prime week will occur on day 25963 = 7 * 3709 which is 56 days or eight weeks away from today's 9th March 2020. The observance of such days provides, via the analysis of the number associated with that day, another opportunity to discover more about the properties of numbers. Since I began this blog on Wednesday, 30th September 2015, it's amazing how much I've learned and how much more there is to know. My very first post was about Catalan Numbers and was begun when I was 24285 days old.


At that time I knew nothing about SageMath or LaTeX. Even though I'd spent many years teaching Mathematics, my knowledge was largely confined to the topics that were included in the various high school curricula.

on Sunday May 2nd 2021

No comments:

Post a Comment