cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A125042 Primes of the form 48k+17 generated recursively. Initial prime is 17. General term is a(n)=Min {p is prime; p divides (2Q)^8 + 1; Mod[p,48]=17}, where Q is the product of previous terms in the sequence.

This page as a plain text file.
%I A125042 #13 Feb 11 2024 14:19:32
%S A125042 17,47441,33000748370307713,21377
%N A125042 Primes of the form 48k+17 generated recursively. Initial prime is 17. General term is a(n)=Min {p is prime; p divides (2Q)^8 + 1; Mod[p,48]=17}, where Q is the product of previous terms in the sequence.
%C A125042 All prime divisors of (2Q)^8 + 1 are congruent to 1 modulo 16.
%C A125042 At least one prime divisor of (2Q)^8 + 1 is congruent to 2 modulo 3 and hence to 17 modulo 48.
%C A125042 The first two terms are the same as those of A125040.
%D A125042 G. A. Jones and J. M. Jones, Elementary Number Theory, Springer-Verlag, NY, (1998), p. 271.
%e A125042 a(3) = 33000748370307713 is the smallest prime divisor congruent to 17 mod 48 of (2Q)^8 + 1 = 45820731194492299767895461612240999140120699535617 = 5136468762577 * 33000748370307713 * 270317134666005456817, where Q = 17 * 47441.
%t A125042 a = {17}; q = 1;
%t A125042 For[n = 2, n ≤ 2, n++,
%t A125042     q = q*Last[a];
%t A125042     AppendTo[a, Min[Select[FactorInteger[(2*q)^8 + 1][[All, 1]],
%t A125042     Mod[#, 48] \[Equal] 17 &]]];
%t A125042     ];
%t A125042 a (* _Robert Price_, Jul 14 2015 *)
%Y A125042 Cf. A000945, A057204-A057208, A051308-A051335, A124984-A124993, A125037-A125045.
%K A125042 more,nonn
%O A125042 1,1
%A A125042 _Nick Hobson_, Nov 18 2006