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.

A225670 Slowest-growing sequence of odd primes p where 1/(p+1) sums to 1 without actually reaching it.

This page as a plain text file.
%I A225670 #18 Jun 27 2024 01:34:31
%S A225670 3,5,7,11,13,17,19,23,29,31,37,41,43,53,2539,936599,127852322431,
%T A225670 510819260848900502567,1553192364608434843485965159509450536731,
%U A225670 52119893982548112392303882371161186032080710958633917215400463948724068502699
%N A225670 Slowest-growing sequence of odd primes p where 1/(p+1) sums to 1 without actually reaching it.
%C A225670 Is there a finite set of odd primes p where 1/(p+1) sums exactly to 1? (This would be an analog of 1/(2+1) + 1/(3+1) + 1/(5+1) + 1/(7+1) + 1/(11+1) + 1/(23+1) = 1 -- see A000058.)
%H A225670 Amiram Eldar, <a href="/A225670/b225670.txt">Table of n, a(n) for n = 1..23</a>
%t A225670 a[n_] := a[n] = Block[ {sm = Sum[ 1/(a[i] + 1), {i, n - 1}]}, NextPrime[ Max[ a[n - 1], 1/(1 - sm)]]]; a[0] = 2; Array[ a, 20]
%Y A225670 Similar to A075442, A181503, A225669.
%Y A225670 Cf. A000058.
%Y A225670 See also A046689.
%K A225670 nonn
%O A225670 1,1
%A A225670 _Jonathan Sondow_, May 11 2013