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.

User: Matthew Doucette

Matthew Doucette's wiki page.

Matthew Doucette has authored 1 sequences.

A332271 a(n) is the smallest positive integer that is not a divisor of the n-th highly composite number (A002182).

Original entry on oeis.org

2, 3, 3, 4, 5, 5, 5, 5, 7, 7, 7, 7, 7, 7, 9, 8, 9, 11, 11, 11, 11, 11, 11, 11, 13, 11, 11, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 17, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 19, 17, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 23, 19, 19, 23, 23, 19, 23, 23, 23, 23, 23, 23
Offset: 1

Author

Matthew Doucette, Jun 05 2020

Keywords

Comments

a(1)=2 and a(2)=3 are the only terms greater than the n-th highly composite number.
Terms are powers of primes (A000961). - David A. Corneth, Jul 12 2020
There are only 8 nonprimes in first 779674 terms: 4, 9, 8, 9, 16, 25, 25, 32. - Jason A. Doucette, Jul 20 2025

Examples

			a(1) = 2 = least non-divisor of 1.
a(2) = 3 = least non-divisor of 2.
a(3) = 3 = least non-divisor of 4.
a(4) = 4 = least non-divisor of 6.
a(5) = 5 = least non-divisor of 12.
...
		

Crossrefs

Programs

  • PARI
    nondiv(n) = {for (k=1, n+1, if (n % k, return (k)););} \\ A007978
    lista(nn) = {my(list=List([1]), r=1); forstep(n=2, nn, 2, if(numdiv(n)>r, r=numdiv(n); listput(list, n));); apply(x->nondiv(x), Vec(list));} \\ Michel Marcus, Jun 10 2020

Formula

a(n) = A007978(A002182(n)).

Extensions

a(67)-a(71) from David A. Corneth, Jul 12 2020
a(72) onward from Jason A. Doucette, Jul 20 2025