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!)
A071255 a(1) = 2, a(n+1) = a(n)-th squarefree number > 1. 5
2, 3, 5, 7, 11, 17, 29, 46, 74, 119, 195, 319, 521, 859, 1407, 2315, 3810, 6267, 10303, 16942, 27862, 45822, 75381, 123998, 203969, 335507, 551886, 907818, 1493294, 2456374, 4040526, 6646389, 10932823, 17983831, 29582198, 48660745, 80043762 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Here 1 is not considered a squarefree number.
LINKS
FORMULA
a(n) = A005117(a(n-1)+1), a(1) = 2.
Limit_{n->infinity} a(n+1)/a(n) = zeta(2). - Daniel Suteu, Jul 07 2022
EXAMPLE
a(2) = 3 and the third squarefree number is 5 hence a(3) = 5.
a(4) = 7 hence a(5) = 11 is the 7th squarefree number (2,3,5,6,7,10,11...)
75381 is the 45822nd squarefree number.
MATHEMATICA
sqf = {}; Do[ If[ SquareFreeQ[n], sqf = Append[sqf, n]], {n, 2, 334000} ]; a[1] = 2; a[n_] := sqf[[ a[n - 1]]]; Table[ a[n], {n, 1, 26}].
a[1]=2; a[x_] := Part[t, a[x-1]] t=Flatten[Position[Table[Abs[MoebiusMu[w]], {w, 2, 35000}], 1]]+1; t1=Table[a[w], {w, 1, 21}]
CROSSREFS
Sequence in context: A238528 A113192 A077673 * A062294 A245879 A113016
KEYWORD
nonn
AUTHOR
Amarnath Murthy, May 22 2002
EXTENSIONS
More terms from Robert G. Wilson v and Labos Elemer, Jun 07 2002
a(27)-a(37) from Donovan Johnson, Oct 29 2010
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 7 21:53 EDT 2024. Contains 372317 sequences. (Running on oeis4.)