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.

Showing 1-3 of 3 results.

A243358 The densest possibly infinite sequence of primes of the form a(n) = floor[A^(C^n)] for A < 2. The density parameter C here approaches its minimal possible value C_0 = 1.2209864... (A117739), while the corresponding value of A is 1.8252076... (A243370).

Original entry on oeis.org

2, 2, 2, 3, 5, 7, 11, 19, 37, 83, 223, 739, 3181, 18911, 166657, 2375617, 60916697, 3199316947, 403223394631, 147983594957101, 200280265936061027, 1333721075205083093951, 62146579709944366260614273, 31146685223026045243771057244741
Offset: 1

Views

Author

Andrey V. Kulsha, Jun 03 2014

Keywords

Comments

Double-checked by David J. Broadhurst. Terms from a(61) to a(67) from David J. Broadhurst. Terms after a(52) are strong probable primes.
It is very likely, but not yet proved, that the sequence is infinite. However, it is clear that for density parameter C < C_0 = 1.2209864... (see A117739) such a sequence must contain nonprime terms.

Crossrefs

Formula

Once the terms up to the prime 223 are known, the following algorithm works:
1. assign P:=(the largest prime currently in the sequence)
2. assign k:=(the distance between 83 and P in the sequence)
3. assign C:=(logP/log84)^(1/k)
4. assign P:=P^C
5. if floor[P] is prime, add it to the sequence and go to 4
6. add nextprime[P] to the sequence and go to 1
That algorithm gives heuristically as many terms as needed because the increment of C at step 3 becomes so tiny that the values of 84^(C^n) for n < k don't jump over integers anymore (although there's no proof).
So we have a(n) = floor[(84-0)^(C_0^(n-10))], where C_0 = 1.2209864... (see A117739), and "84-0" notation means that when C approaches C_0 from above, the necessary value of A brings A^(C^10) to 84 from below.

A243370 Decimal expansion of the number A = 1.8252076... which generates the densest possibly infinite sequence of primes a(n) = floor[A^(C^n)] for A < 2. That prime sequence is A243358.

Original entry on oeis.org

1, 8, 2, 5, 2, 0, 7, 6, 3, 4, 7, 6, 9, 3, 3, 5, 0, 6, 8, 0, 5, 1, 8, 3, 4, 1, 5, 5, 7, 8, 3, 3, 4, 2, 4, 8, 6, 2, 2, 8, 9, 5, 8, 9, 7, 7, 4, 9, 7, 8, 6, 2, 8, 5, 6, 9, 6, 5, 4, 5, 0, 0, 8, 0, 5, 0, 0, 5, 0, 9, 8, 2, 2, 4, 9, 2, 8, 1, 2, 5, 3, 5, 7, 5, 9, 9, 0
Offset: 1

Views

Author

Andrey V. Kulsha, Jun 04 2014

Keywords

Comments

It is very likely, but not yet proved, that the sequence of primes A243358 is actually infinite. But it's clear that if such an infinite sequence exists, then its density parameter C should be larger than C_0 = 1.2209864... (see A117739).

Crossrefs

Formula

A = 84^(1/C_0^10), where C_0 (mentioned above) is given in A117739.

A219177 Decimal expansion of what appears to be the smallest possible C for which the nearest integer to C^2^n is always prime and starts with 2.

Original entry on oeis.org

1, 2, 7, 2, 0, 1, 9, 6, 3, 3, 1, 9, 2, 1, 9, 3, 4, 9, 5, 8, 6, 9, 7, 3, 5, 3, 2, 0, 9, 1, 1, 9, 2, 8, 8, 3, 7, 6, 3, 7, 5, 6, 3, 0, 8, 2, 6, 9, 9, 6, 4, 7, 6, 4, 8, 1, 3, 2, 2, 5, 8, 0, 4, 1, 5, 4, 8, 7, 5, 3, 2, 8, 1, 4, 2, 6, 4, 3, 3, 7, 5, 6, 4, 0, 7, 3, 8, 4, 8, 8, 1, 5, 0, 4, 5, 1, 8, 7, 5, 4, 0, 7, 4, 0, 2, 8
Offset: 1

Views

Author

Robert G. Wilson v, Nov 15 2012

Keywords

Comments

The square of this constant, C^2 = 1.6180339472264..., is very close to the Golden Ratio Phi (A001622).
This constant is about 3% less than Mills's constant, 1.306377883863..., (A051021).
Since there is always a prime between an integer and its square, this constant should satisfy the same criteria as does Mills's constant (A051021).
This constant, C, produces A059785.

Examples

			=1.2720196331921934958697353209119288376375630826996476481322580415...
		

Crossrefs

Programs

  • Mathematica
    RealDigits[ Nest[ NextPrime[#^2, -1] &, 2, 8]^(2^-9), 10, 111][[1]]
Showing 1-3 of 3 results.