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!)
A274700 Numbers n such that 7*10^n + 37 is prime. 1
1, 7, 15, 21, 91, 325, 465, 853 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
All terms are odd because 7*(9*11+1)^n + 37 is divisible by 11.
LINKS
EXAMPLE
1 is in this sequence because 7*10 + 37 = 107 is prime.
3 is not in the sequence because 7*10^3 + 37 = 31*227.
Initial terms and associated primes:
a(1) = 1: 107;
a(2) = 7: 70000037;
a(3) = 15: 7000000000000037;
a(4) = 21: 7000000000000000000037, etc.
MATHEMATICA
Select[Range[0, 3000], PrimeQ[7 10^# + 37] &]
PROG
(Magma) [n: n in [1..400] | IsPrime(7*10^n+37)];
(PARI) lista(nn) = for(n=1, nn, if(ispseudoprime(7*10^n+37), print1(n, ", "))); \\ Altug Alkan, Jul 05 2016
CROSSREFS
Cf. similar sequences listed in A274676.
Sequence in context: A179676 A053354 A346197 * A022552 A082658 A022389
KEYWORD
nonn,more
AUTHOR
Vincenzo Librandi, Jul 04 2016
EXTENSIONS
Edited by Bruno Berselli, Jul 05 2016
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 April 23 12:58 EDT 2024. Contains 371913 sequences. (Running on oeis4.)