login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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. 1
1, 8, 48, 1518, 5828, 28032, 304260, 290783, 1255500, 4325170, 11135837, 18567909, 321903029, 1394350275, 287946949, 1659945758, 38882519234 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(2) = 8 since 8 and 9 are in A048098, 7 and 10 are not, and 8 is the least number with this property.
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]
CROSSREFS
Sequence in context: A181276 A010568 A080493 * A303723 A305226 A304771
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Jul 02 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 17 05:44 EDT 2024. Contains 375200 sequences. (Running on oeis4.)