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.

Previous Showing 11-12 of 12 results.

A382481 a(n) is the number of primes less than 4^(n^2).

Original entry on oeis.org

0, 2, 54, 23000, 203280221, 33483379603407, 96601075195075186855
Offset: 0

Views

Author

Stefano Spezia, Mar 28 2025

Keywords

Comments

Thue's proof, that there exist infinitely many primes, shows also that n+1 is a lower bound for a(n) (see Ribenboim, 2004).

References

  • Paulo Ribenboim, The Little Book of Bigger Primes, Springer-Verlag NY 2004. See pp. 9-10.

Crossrefs

Programs

  • Mathematica
    a[n_]:=PrimePi[4^(n^2)]; Array[a,6,0]
  • Python
    from sympy import primepi
    def A382481(n): return primepi(1<<(n**2<<1)) # Chai Wah Wu, Mar 29 2025

A383255 Number of n X n {0,1,2,3} matrices having no 1's to the right of any 0's and no 3's above any 2's.

Original entry on oeis.org

1, 4, 194, 107080, 672498596, 48104236145168, 39202958861329453384, 364022757339778569993689888, 38513979937284562006371342202842000, 46429021191757554279412904483559912259714112, 637737721080296383894709847744103523361428384973270816
Offset: 0

Views

Author

John Tyler Rascoe, Apr 20 2025

Keywords

Comments

These are matrices with no [0,1] or [3] submatrices.
[2]

Examples

			The 3 X 3 matrices below are counted under a(3) = 107080:
 [0,0,0] [1,0,2] [2,3,2]
 [0,0,0] [1,0,3] [3,3,3]
 [0,0,0],[0,2,3],[3,3,3].
		

Crossrefs

Programs

  • Python
    # see links

Formula

a(n) <= A060757(n).

Extensions

a(5)-a(10) from Bert Dobbelaere, Apr 23 2025
Previous Showing 11-12 of 12 results.