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!)
A274546 Numbers m such that 5*m is squarefree. 6
1, 2, 3, 6, 7, 11, 13, 14, 17, 19, 21, 22, 23, 26, 29, 31, 33, 34, 37, 38, 39, 41, 42, 43, 46, 47, 51, 53, 57, 58, 59, 61, 62, 66, 67, 69, 71, 73, 74, 77, 78, 79, 82, 83, 86, 87, 89, 91, 93, 94, 97, 101, 102, 103, 106, 107, 109, 111, 113, 114, 118, 119, 122, 123, 127, 129, 131, 133, 134 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Squarefree numbers coprime to 5.
LINKS
FORMULA
a(n) ~ Pi^2*n/5. - Charles R Greathouse IV, Sep 06 2016 [corrected by Amiram Eldar, Sep 26 2023]
Sum_{n>=1} 1/a(n)^s = (5^s)*zeta(s)/((1+5^s)*zeta(2*s)), s>1. - Amiram Eldar, Sep 26 2023
EXAMPLE
6 is in this sequence because 5*6 = 30 = 2*3*5 is squarefree.
MATHEMATICA
Select[Range[135], !Divisible[#, 5] && SquareFreeQ[#] &] (* Amiram Eldar, Sep 26 2023 *)
PROG
(Magma) [n: n in [1..135] | IsSquarefree(5*n)];
(PARI) lista(nn) = for(n=1, nn, if(issquarefree(5*n), print1(n, ", "))); \\ Altug Alkan, Sep 05 2016
(PARI) is(n)=n%5 && issquarefree(n) \\ Charles R Greathouse IV, Sep 06 2016
CROSSREFS
Numbers m such that m*A005117(k) is squarefree: A005117 (k = 1), A056911 (k = 2), A261034 (k = 3), this sequence (k = 5), A276378 (k = 6).
Cf. A008587.
Sequence in context: A102432 A024561 A350573 * A366641 A113545 A056825
KEYWORD
nonn,easy
AUTHOR
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 3 10:32 EDT 2024. Contains 372207 sequences. (Running on oeis4.)