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!)
A278100 Number of squarefree positive integers less than n^2. 4
0, 3, 6, 11, 16, 23, 31, 39, 50, 61, 75, 89, 103, 120, 139, 157, 177, 199, 219, 243, 269, 297, 323, 351, 381, 412, 444, 477, 513, 547, 584, 624, 660, 703, 745, 789, 835, 882, 928, 977, 1025, 1073, 1124, 1174, 1230, 1285, 1342, 1400, 1460, 1523, 1582, 1645, 1708 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = A013928(n^2).
a(n) ~ 6*n^2/Pi^2 + O(n). - Amiram Eldar, Mar 09 2021
MATHEMATICA
Table[Count[Range[n^2], k_ /; SquareFreeQ@ k], {n, 53}] (* Michael De Vlieger, Nov 24 2016 *)
Module[{nn=60, sf}, sf=Accumulate[Table[If[SquareFreeQ[n], 1, 0], {n, 0, nn^2}]]; Table[sf[[k^2]], {k, nn}]] (* Harvey P. Dale, Nov 14 2020 *)
PROG
(Magma)
A278100:=func<n|#[k:k in[1..n^2-1]|IsSquarefree(k)]>;
[A278100(n):n in[1..53]]; // in cubic time
(PARI) a(n) = #select(x->issquarefree(x), vector(n^2-1, k, k)); \\ Michel Marcus, Nov 12 2016
CROSSREFS
This is the row length sequence of A277648 and A278101.
Sequence in context: A266252 A267260 A116940 * A087099 A181947 A366969
KEYWORD
nonn,easy
AUTHOR
Jason Kimberley, Nov 12 2016
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 April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)