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!)
A244192 a(n) = most common 2-digit ending for a prime < 10^n, or 0 if there is a tie. 2
0, 0, 0, 97, 71, 91, 77, 61, 47, 47, 19, 27, 37 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,4
COMMENTS
a(3) = 0 because '83' and '57' both appear 6 times in the endings of primes < 1000.
a(4) = 0 because '19' and '23' both appear 35 times in the endings of primes < 10000.
LINKS
EXAMPLE
For all primes < 100000 (10^5), the most common 2-digit ending is 97. Thus a(5) = 97.
PROG
(Python)
import sympy
from sympy import isprime
def prend(d, n):
..lst = []
..for k in range(10**n):
....if isprime(k):
......lst.append((k%10**d))
..new = 0
..newlst = []
..for i in range(10**(d-1), 10**d):
....new = lst.count(i)
....newlst.append(new)
..newlst1 = newlst.copy()
..a = max(newlst1)
..newlst1[newlst1.index(a)] = 0
..b = max(newlst1)
..if a == b:
....return 0
..else:
....return newlst.index(max(a, b)) + 10**(d-1)
n = 3
while n < 10:
..print(prend(2, n), end=', ')
..n += 1
CROSSREFS
Sequence in context: A033417 A182690 A088866 * A075478 A126146 A112667
KEYWORD
nonn,base,hard,more
AUTHOR
Derek Orr, Jun 22 2014
EXTENSIONS
a(9)-a(12) from Hiroaki Yamanouchi, Jul 11 2014
a(13)-a(14) from Giovanni Resta, Oct 23 2018
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 July 26 06:01 EDT 2024. Contains 374615 sequences. (Running on oeis4.)