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.

A067241 Numbers k such that gcd((2*k)!+1, k!+1) > 1.

Original entry on oeis.org

3, 5, 8, 9, 21, 23, 33, 39, 51, 63, 65, 81, 89, 95, 99, 113, 131, 173, 183, 191, 209, 215, 221, 239, 245, 251, 261, 281, 285, 299, 303, 309, 315, 341, 345, 363, 369, 371, 393, 411, 419, 431, 443, 473, 495, 509, 525, 543, 545, 561, 575, 593, 645, 659, 683, 711
Offset: 1

Views

Author

Benoit Cloitre, Feb 20 2002

Keywords

Crossrefs

Programs

  • Mathematica
    q[k_] := !CoprimeQ[(2*k)!+1, k!+1]; Select[Range[720], q] (* Amiram Eldar, May 01 2025 *)
  • PARI
    isok(k) = gcd((2*k)!+1, k!+1) > 1; \\ Amiram Eldar, May 01 2025