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

A355434 a(n) is the least start of exactly n consecutive numbers k that are sqrt(k)-smooth (A048098), or -1 if no such run exists.

Original entry on oeis.org

1, 8, 48, 1518, 5828, 28032, 304260, 290783, 1255500, 4325170, 11135837, 18567909, 321903029, 1394350275, 287946949, 1659945758, 38882519234
Offset: 1

Views

Author

Amiram Eldar, Jul 02 2022

Keywords

Examples

			a(2) = 8 since 8 and 9 are in A048098, 7 and 10 are not, and 8 is the least number with this property.
		

Crossrefs

Programs

  • Mathematica
    smQ[n_] := FactorInteger[n][[-1, 1]]^2 <= n; seq[len_, nmax_] := Module[{s = Table[0, {len}], v = {1}, n = 2, c = 0, m}, While[c <= len && n <= nmax, If[smQ[n], v = Join[v, {n}], m = Length[v]; v = {}; If[0 <= m <= len && s[[m]] == 0, c++; s[[m]] = n - m]]; n++]; s]; seq[6, 10^5]
Showing 1-1 of 1 results.