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

A369022 a(n) is the least start of a run of exactly n consecutive integers with the same maximal exponent in their prime factorization, or -1 if no such run exists.

Original entry on oeis.org

1, 2, 5, 844, 30923, 671346, 8870025
Offset: 1

Views

Author

Amiram Eldar, Jan 12 2024

Keywords

Comments

a(8) > 3.7*10^10.
a(8) <= 1770019255373287038727484868192109228824 which is the conjectured value of A219452(8)+1. - Giorgos Kalogeropoulos, Jan 15 2024

Crossrefs

Similar sequences: A071125, A219452, A323253.

Programs

  • Mathematica
    emax[n_] := Max[FactorInteger[n][[;; , 2]]]; emax[1] = 0; ind = Position[Differences[Table[emax[n], {n, 1, 10^6}]], _?(# != 0 &)] // Flatten; d = Differences[ind]; seq = {1}; Do[i = FirstPosition[d, k]; If[MissingQ[i], Break[]]; AppendTo[seq, ind[[i[[1]]]] + 1], {k, 2, Max[d]}]; seq
  • PARI
    emax(n) = vecmax(factor(n)[, 2]);
    lista(len) = {my(v = vector(len), w = [0], m, c = 0, k = 2); while(c < len, e = emax(k); m = #w; if(e == w[m], w = concat(w, e), if(m < = len && v[m] == 0, v[m] = k-m; c++); w = [e]); k++); v;}

Formula

A051903(a(n)) >= k for 2^k <= n < 2^(k+1)-1.

A072072 Least number initiating a chain of n consecutive numbers each of which has maximal prime exponent exactly 3.

Original entry on oeis.org

8, 135, 6858, 2068373, 133799496, 80566783622, 30199064929748
Offset: 1

Views

Author

Labos Elemer, Jun 13 2002

Keywords

Comments

a(7) <= 30199064929748 ("=" if there are no bugs in my program), a(8) > 300000000000000 (unless there's a bug in my program). - Brad Chalfan (bradc(AT)hevanet.com), Nov 13 2002

Examples

			m   = 2068373 = 17*17*17*421,
m+1 = 2068374 = 2*3*7*11*11*11,
m+2 = 2068375 = 5*5*5*37*16547,
m+3 = 2068376 = 2*2*2*47*5501.
		

Crossrefs

Extensions

One more term from Don Reble, Jun 17 2002
a(6) <= 80566783622 from Don Reble, equality established by Brad Chalfan (bradc(AT)hevanet.com), Nov 13 2002
30199064929748 confirmed to be the 7th term by Donovan Johnson, Jun 15 2009
Showing 1-2 of 2 results.