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.

A365411 Numbers k such that 4*k-1 and 4*k+1 are both prime powers (A246655).

This page as a plain text file.
%I A365411 #21 Oct 23 2023 02:09:46
%S A365411 1,2,3,6,7,12,15,18,20,27,42,45,48,57,60,78,87,90,105,108,150,165,182,
%T A365411 207,210,255,258,273,288,330,342,357,363,372,402,405,417,447,462,468,
%U A365411 483,507,522,528,552,567,585,600,648,672,678,750,780,792,813,825,840,843
%N A365411 Numbers k such that 4*k-1 and 4*k+1 are both prime powers (A246655).
%C A365411 Let b(q) be the number of pairs of consecutive nonzero squares in the finite field F_q for odd prime powers q, then b(q) = b(q') for q < q' if and only if q = 4*k-1 and q' = 4*k+1 for k being a term of this sequence, in which case we have b(q) = b(q') = k-1.
%H A365411 Jianing Song, <a href="/A365411/b365411.txt">Table of n, a(n) for n = 1..10000</a>
%e A365411 6 is a term since 4*6-1 = 23 is a prime, and 4*6+1 = 25 is a prime power.
%o A365411 (PARI) isA365411(n) = isprimepower(4*n-1) && isprimepower(4*n+1)
%Y A365411 Cf. A246655, A366502. Supersequence of A045753.
%Y A365411 {2*a(n)} is a subsequence of A365416.
%K A365411 nonn,easy
%O A365411 1,2
%A A365411 _Jianing Song_, Oct 22 2023