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!)
A124985 Primes of the form 8*k + 7 generated recursively. Initial prime is 7. General term is a(n) = Min_{p is prime; p divides 8*Q^2 - 1; p == 7 (mod 8)}, where Q is the product of the previous terms. 0
7, 23, 207367, 1902391, 167, 1511, 28031, 79, 3142977463, 2473230126937097422987916357409859838765327, 2499581669222318172005765848188928913768594409919797075052820591, 223 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
8*Q^2 - 1 always has a prime divisor congruent to 7 modulo 8.
REFERENCES
D. M. Burton, Elementary Number Theory, McGraw-Hill, Sixth Edition (2007), p. 182.
LINKS
EXAMPLE
a(4) = 1902391 is the smallest prime divisor, congruent to 7 modulo 8, of 8*Q^2 - 1 = 8917046441372551 = 97 * 1902391 * 48322513, where Q = 7 * 23 * 207367.
MATHEMATICA
a={7}; q=1;
For[n=2, n<=9, n++,
q=q*Last[a];
AppendTo[a, Min[Select[FactorInteger[8*q^2-1][[All, 1]], Mod[#, 8]==7&]]];
];
a (* Robert Price, Jul 18 2015 *)
PROG
(PARI) main(size)={my(v=vector(size), i, q=1, t); for(i=1, size, t=1; while(!(prime(t)%8==7&&(8*q^2-1)%prime(t)==0), t++); v[i]=prime(t); q*=v[i]); v; } /* Anders Hellström, Jul 18 2015 */
CROSSREFS
Sequence in context: A009047 A129662 A012482 * A349078 A126612 A196113
KEYWORD
nonn
AUTHOR
Nick Hobson, Nov 18 2006
EXTENSIONS
Edited and added a(11)-a(12) by Max Alekseyev, May 31 2013
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)