OFFSET
1,2
COMMENTS
These are the numbers from A005117 that are not divisible by 3. See the Maple program by Robert Israel. - Wolfdieter Lang, Aug 21 2015
Squarefree numbers divisible by 3: 3, 6, 15, 21, 30, 33, 39, 42, 51, 57, 66, 69, 78, 87, 93, 102, ...
FORMULA
a(n) ~ 2*Pi^2*n/9. - Charles R Greathouse IV, Aug 07 2015
Sum_{n>=1} 1/a(n)^s = (3^s)*zeta(s)/((1+3^s)*zeta(2*s)), s>1. - Amiram Eldar, Sep 26 2023
EXAMPLE
10 is in this sequence because 3*10 = 30 is squarefree.
MAPLE
select(numtheory:-issqrfree, [seq(seq(3*i+j, j=1..2), i=0..1000)]); # Robert Israel, Aug 07 2015
MATHEMATICA
Select[Range[0, 200], SquareFreeQ[3 #] &] (* Vincenzo Librandi, Aug 08 2015 *)
PROG
(Magma) [n: n in [1..200] | IsSquarefree(3*n)];
(PARI) is(n)=n%3 && issquarefree(n) \\ Charles R Greathouse IV, Aug 07 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Juri-Stepan Gerasimov, Aug 07 2015
EXTENSIONS
Corrected and extended by Vincenzo Librandi, Aug 08 2015
STATUS
approved