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.

A096650 Indices of prime Pell numbers.

This page as a plain text file.
%I A096650 #31 Mar 17 2025 22:13:57
%S A096650 2,3,5,11,13,29,41,53,59,89,97,101,167,181,191,523,929,1217,1301,1361,
%T A096650 2087,2273,2393,8093,13339,14033,23747,28183,34429,36749,90197
%N A096650 Indices of prime Pell numbers.
%C A096650 For a Pell number to be prime, the index must be prime. The indices greater than 523 yield probable primes. No others less than 100000. - _T. D. Noe_, Sep 13 2004
%C A096650 n divides m if and only if A000129(n) divides A000129(m). This is the reason of the fact that this sequence is a subsequence of A000040. For complement of this sequence see A270387. - _Altug Alkan_, Apr 29 2016
%H A096650 Steve Fan and Paul Pollack, <a href="https://arxiv.org/abs/2503.07801">Extremal elasticity of quadratic orders</a>, arXiv:2503.07801 [math.NT], 2025. See p. 17.
%H A096650 J. L. Schiffman, <a href="http://archives.math.utk.edu/ICTCM/i/24/C027.html">Exploring the Fibonacci sequence of order two with CAS technology</a>, Paper C027, Electronic Proceedings of the Twenty-fourth Annual International Conference on Technology in Collegiate Mathematics, Orlando, Florida, March 22-25, 2012. See p. 262. - _N. J. A. Sloane_, Mar 27 2014
%H A096650 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/PellNumber.html">Pell Number</a>.
%H A096650 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/IntegerSequencePrimes.html">Integer Sequence Primes </a>.
%e A096650 P(11)=5741, which is prime.
%p A096650 Pell:= gfun:-rectoproc( {a(0) = 0, a(1) = 1, a(n) = 2*a(n-1) + a(n-2)},a(n), remember):
%p A096650 select(t -> isprime(t) and isprime(Pell(t)), [2, seq(2*i+1, i=1..2000)]); # _Robert Israel_, Aug 28 2015
%t A096650 lst={}; a=0; b=1; Do[c=a+2b; a=b; b=c; If[PrimeQ[c], AppendTo[lst, n]], {n, 2, 10000}]; lst (* _T. D. Noe_, Aug 17 2004 *)
%t A096650 Flatten@ Position[#, p_ /; PrimeQ@ p] - 1 &@ CoefficientList[Series[x/(1 - 2 x - x^2), {x, 0, 5000}], x] (* _Michael De Vlieger_, Apr 29 2016, after _Stefan Steinerberger_ at A000129 *)
%Y A096650 Cf. A000129 (Pell numbers), A086383 (prime Pell numbers), A270387.
%K A096650 nonn,hard,more
%O A096650 1,1
%A A096650 Julien Peter Benney (jpbenney(AT)ftml.net), Aug 15 2004
%E A096650 More terms from _T. D. Noe_, Aug 17 2004
%E A096650 Further terms from _T. D. Noe_, Sep 13 2004