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.

A369295 a(n) is the first number k such that Omega(k) = n and Omega(n - 1) = Omega(n + 1) = n + 1.

Original entry on oeis.org

5, 51, 343, 3185, 75951, 1780624, 16825375, 212781249, 4613781249, 74239460225, 858245781249, 46055847109375, 487028345781249
Offset: 1

Views

Author

Zak Seidov and Robert Israel, Jan 18 2024

Keywords

Comments

a(n) is the first k such that k - 1, k and k + 1 have n + 1, n and n + 1 prime factors respectively, counted with multiplicity.
From David A. Corneth, Jan 19 2024: (Start)
a(9) <= 4613781249. This value is exact if 27000 divides lcm(a(9)-1, a(9), a(9)+1). Same goes for a(10) <= 104168181249.
a(11) <= 858245781249 if 810000 divides lcm(a(11)-1, a(11), a(11)+1). a(12) <= 46055847109375 if 24300000 divides lcm(a(12)-1, a(12), a(12)+1). (End)

Examples

			a(3) = 343 because 343 = 7^3 has 3 prime factors while 342 = 2 * 3^2 * 19 and 344 = 2^3 * 43 each have 4, and 343 is the least number that works.
		

Crossrefs

Programs

  • Maple
    V:= Vector(8): count:= 0:
    b:= 0: c:= 1:
    for n from 3 do
      a:= b; b:= c; c:= numtheory:-bigomega(n);
      if a = b+1 and c = b+1 and b <= 8 and V[b] = 0 then
        V[b]:= n-1; count:= count+1; if count = 8 then break fi;
      fi
    od:
    convert(V,list);
  • PARI
    generate(A, B, n) = A=max(A, 2^n); (f(m, p, k) = my(list=List()); if(k==1, forprime(q=max(p, ceil(A/m)), B\m, my(t=m*q); if(bigomega(t+2) == n && bigomega(t+1) == n-1, listput(list, t+1))), forprime(q = p, sqrtnint(B\m, k), list=concat(list, f(m*q, q, k-1)))); list); vecsort(Vec(f(1, 2, n)));
    a(n) = my(x=2^n, y=2*x); while(1, my(v=generate(x, y, n+1)); if(#v >= 1, return(v[1])); x=y+1; y=2*x); \\ Daniel Suteu, Jan 19 2024

Extensions

a(9)-a(11) from Daniel Suteu, Jan 19 2024
a(12)-a(13) from Martin Ehrenstein, Feb 12 2024