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!)
A124989 Primes of the form 10*k + 9 generated recursively. Initial prime is 19. General term is a(n) = Min_{p is prime; p divides 100*Q^2 - 5; p == 9 (mod 10)}, where Q is the product of previous terms in the sequence. 2
19, 7219, 462739, 509, 129229, 295380580489, 9653956849, 149, 110212292237172705230749846071050188009093377022084806290042881946231583507557298889, 157881589, 60397967745386189, 1429, 79 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
100Q^2-5 always has a prime divisor congruent to 9 modulo 10.
LINKS
EXAMPLE
a(3) = 462739 is the smallest prime divisor congruent to 9 mod 10 of 100Q^2-5 = 1881313992095 = 5 * 462739 * 813121, where Q = 19 * 7219.
MATHEMATICA
a={19}; q=1;
For[n=2, n<=6, n++,
q=q*Last[a];
AppendTo[a, Min[Select[FactorInteger[100*q^2-5][[All, 1]], Mod[#, 10]==9&]]];
];
a (* Robert Price, Jul 18 2015 *)
CROSSREFS
Sequence in context: A013724 A067267 A340165 * A265964 A156973 A270972
KEYWORD
nonn
AUTHOR
Nick Hobson, Nov 18 2006
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 May 10 04:04 EDT 2024. Contains 372356 sequences. (Running on oeis4.)