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!)
A076994 a(1) = 2, a(n+1) is the largest squarefree number < 2a(n). 1
2, 3, 5, 7, 13, 23, 43, 85, 167, 331, 661, 1321, 2641, 5281, 10561, 21121, 42241, 84481, 168961, 337921, 675841, 1351681, 2703361, 5406721, 10813441, 21626881, 43253761, 86507521, 173015041, 346030081, 692060161, 1384120321, 2768240641 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Analogous to Bertrand's primes.
LINKS
MAPLE
with(numtheory):a[1] := 2:for n from 2 to 84 do q := 2*a[n-1]-1:while(not issqrfree(q)) do q := q-1:od:a[n] := q:od:seq(a[l], l=1..84);
MATHEMATICA
lsfn[n_]:=Module[{s=2n-1}, While[!SquareFreeQ[s], s--]; s]; NestList[ lsfn, 2, 40] (* Harvey P. Dale, Nov 28 2018 *)
CROSSREFS
Cf. A006992.
Sequence in context: A006992 A185231 A080190 * A327591 A124147 A227627
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Oct 26 2002
EXTENSIONS
More terms from Sascha Kurz, Jan 26 2003
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 May 11 13:00 EDT 2024. Contains 372409 sequences. (Running on oeis4.)