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.

A240537 Let a(n) be the least k such that in the prime power factorization of k! the exponents of primes p_1, ...,p_n are even, while the exponent of p_(n+1) is odd.

Original entry on oeis.org

12, 6, 10, 20, 48, 54, 338, 875, 2849, 1440, 3841, 816, 59583, 101755, 40465, 37514, 409026, 268836, 591360, 855368, 5493420, 9627251, 28953290, 14557116, 7336812, 1475128, 127632241, 531296823, 3028478192, 2435868325, 1092228841, 32377733790, 472077979
Offset: 1

Views

Author

Keywords

Comments

The sequence is connected with a 1980-Erdős-Graham conjecture that, for every N, there exists an n such that in prime power factorization of n! at least N first exponents are even. In 1997, this conjecture was proved by D. Berend. A generalization was given by Y.-G. Chen (2003).

References

  • P. Erdős, P. L. Graham, Old and new problems and results in combinatorial number theory, L'Enseignement Mathematique, Imprimerie Kunding, Geneva, 1980.

Crossrefs

Programs

  • PARI
    nbe(n) = {my(f = factor(n!)[, 2], nb = 0); for (i=1, #f, if (!(f[i] % 2), nb++, break);); nb;}
    a(n) = {my(i = 1); while (nbe(i) != n, i++); i;} \\ Michel Marcus, Nov 07 2018

Extensions

a(21)-a(30) from Giovanni Resta, Apr 07 2014
a(31)-a(33) from Hiroaki Yamanouchi, Sep 05 2014