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-4 of 4 results.

A072826 Primes p such that p-1 is a highly composite number.

Original entry on oeis.org

2, 3, 5, 7, 13, 37, 61, 181, 241, 2521, 7561, 15121, 20161, 45361, 55441, 110881, 332641, 498961, 4324321, 14414401, 43243201, 110270161, 183783601, 367567201, 4655851201, 13967553601, 73329656401, 293318625601, 1606268664001
Offset: 1

Views

Author

Shyam Sunder Gupta, Jul 21 2002

Keywords

Examples

			13 is a term because it is a prime such that 13-1=12 is a highly composite number.
		

Crossrefs

Cf. A002182 (highly composite numbers), A072828 (with p+1 instead), A306587.

Formula

a(n) = A002182(A306587(n)) + 1. - Amiram Eldar, Dec 03 2020

A306588 Numbers k such that A002182(k)-1 is prime.

Original entry on oeis.org

3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 19, 20, 21, 28, 30, 31, 37, 39, 40, 45, 52, 55, 65, 66, 67, 68, 70, 79, 81, 84, 101, 108, 118, 131, 132, 136, 143, 148, 149, 151, 163, 170, 174, 185, 191, 200, 203, 208, 212, 231, 259, 261, 286, 289, 297, 317, 326, 327
Offset: 1

Views

Author

Dmitry Kamenetsky, Mar 02 2019

Keywords

Crossrefs

Cf. A002182 (highly composite numbers), A072826, A306587.

Extensions

More terms from Daniel Suteu, Mar 02 2019

A321995 Indices of highly composite numbers A002182 which are between a twin prime pair.

Original entry on oeis.org

3, 4, 5, 9, 11, 12, 20, 28, 30, 84, 108, 118, 143, 149, 208, 330, 362, 1002, 2395, 3160, 10535
Offset: 1

Views

Author

M. F. Hasler, Jun 23 2019

Keywords

Comments

The highly composite numbers are listed in A068507, but their growth is such that one cannot list the terms beyond A002182(362), corresponding to a(17), in the DATA section.
The term a(21) corresponds to A002182(10535) = A108951(52900585920). - Daniel Suteu, Jun 27 2019
a(22) > 779674, if it exists. - Amiram Eldar, Dec 03 2020

Crossrefs

Programs

  • PARI
    select( x->ispseudoprime(x-1)&&ispseudoprime(x+1), A2182, 1) \\ assuming A2182 holds enough terms of A002182. - M. F. Hasler, Jun 23 2019

Formula

Intersection of A306587 and A306588. - Daniel Suteu, Jun 27 2019

Extensions

a(21) from Daniel Suteu, Jun 27 2019 (obtained from A. Flammenkamp's data)

A353301 Numbers k such that A004394(k)+1 is prime.

Original entry on oeis.org

1, 2, 3, 4, 5, 7, 9, 11, 12, 18, 21, 24, 25, 28, 35, 45, 46, 50, 56, 70, 73, 76, 78, 79, 82, 89, 94, 105, 113, 116, 118, 121, 123, 124, 138, 139, 153, 157, 159, 164, 197, 201, 203, 210, 217, 253, 261, 273, 280, 283, 287, 342, 352, 356, 381, 396, 437, 450, 471
Offset: 1

Views

Author

Amiram Eldar, Apr 10 2022

Keywords

Comments

First differs from A306587 at n=11.

Examples

			1 is a term since A004394(1)+1 = 1+1 = 2 is prime.
		

Crossrefs

Programs

  • Mathematica
    s = {}; abm = 0; k = 0; Do[ab = DivisorSigma[-1, n]; If[ab > abm, abm = ab; k++; If[PrimeQ[n + 1], AppendTo[s, k]]], {n, 1, 10^6}]; s
Showing 1-4 of 4 results.