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.

A175530 Pseudoprime Chebyshev numbers: odd composite integers n such that T_n(a) == a (mod n) for all integers a, where T(x) is Chebyshev polynomial of first kind.

Original entry on oeis.org

7056721, 79397009999, 443372888629441, 582920080863121, 2491924062668039, 14522256850701599, 39671149333495681, 242208715337316001, 729921147126771599, 842526563598720001, 1881405190466524799, 2380296518909971201, 3188618003602886401, 33711266676317630401, 54764632857801026161, 55470688965343048319, 72631455338727028799, 122762671289519184001, 361266866679292635601, 734097107648270852639
Offset: 1

Views

Author

Max Alekseyev, Jun 08 2010

Keywords

Comments

Odd composite integer n is a pseudoprime Chebyshev number iff the n-th term of Lucas sequence satisfies the congruence V_n(P,1) == P (mod n) for any integer P.
Odd composite integer n is a pseudoprime Chebyshev number iff n == +1 or -1 (mod p-1) and n == +1 or -1 (mod p+1) for each prime p|n.
No other terms below 10^21.
Named after the Russian mathematician Pafnuty Chebyshev (1821-1894) after whom the "Chebyshev polynomials" were also named. - Amiram Eldar, Jun 15 2021

Examples

			7056721 = 7 * 47 * 89 * 241, while 7056721 == 1 (mod 7-1), == 1 (mod 7+1), == -1 (mod 47-1), == 1 (mod 47+1), == 1 (mod 89-1), == 1 (mod 89+1), == 1 (mod 241-1), and == 1 (mod 241+1).
		

Crossrefs

Terms that are Carmichael numbers (A002997) form A299799.
Contains A175531 as a subsequence.

Extensions

a(1) is given in the Jacobs-Rayes-Trevisan paper.
a(2) from Kevin Acres, David Broadhurst, Ray Chandler, David Cleaver, Mike Oakes, and Christ van Willegen, Jun 04 2010
a(3)-a(20) from Max Alekseyev, Jun 08 2010, Feb 26 2018, Dec 16 2020

A299799 Carmichael numbers (A002997) that are Chebyshev pseudoprimes (A175530).

Original entry on oeis.org

443372888629441, 582920080863121, 39671149333495681, 842526563598720001, 2380296518909971201, 3188618003602886401, 33711266676317630401, 54764632857801026161, 122762671289519184001, 361266866679292635601, 4208895375600667752001, 7673096805497432749441
Offset: 1

Views

Author

Max Alekseyev, Feb 19 2018

Keywords

Comments

Odd composite integer n is in this sequence if n == 1 or p (mod (p^2-1)/2) for every prime p|n.
No other terms below 10^22.

Crossrefs

Intersection of A002997 and A175530.
Contains A175531 as a subsequence.

Extensions

a(9) from Daniel Suteu confirmed and a(10) added by Max Alekseyev, Dec 16 2020
a(11)-a(12) from Max Alekseyev, Apr 21 2024

A287119 Squarefree composite numbers n such that p^2 - 1 divides n^2 - 1 for every prime p dividing n.

Original entry on oeis.org

8569, 39689, 321265, 430199, 564719, 585311, 608399, 7056721, 11255201, 17966519, 18996769, 74775791, 75669551, 136209151, 321239359, 446660929, 547674049, 866223359, 1068433631, 1227804929, 1291695119, 2315403649, 2585930689, 7229159729, 7809974369, 8117634239
Offset: 1

Views

Author

Thomas Ordowski, May 20 2017

Keywords

Comments

Such numbers are odd and have at least three prime factors.
Problem: are there infinitely many such numbers?

Crossrefs

Subsequence of A120944.

Programs

  • PARI
    isok(n) = {if (issquarefree(n) && !isprime(n), my(f = factor(n)); for (k=1, #f~, if ((n^2-1) % (f[k,1]^2-1), return (0));); return (1););} \\ Michel Marcus, May 20 2017

Extensions

More terms from Michel Marcus, May 20 2017
a(14)-a(26) from Giovanni Resta, May 20 2017
Showing 1-3 of 3 results.