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!)
A001878 Number of divisors of n of form 5k+3; a(0) = 0. 16
0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 2, 0, 0, 1, 0, 1, 2, 0, 1, 1, 1, 0, 1, 0, 1, 2, 0, 0, 2, 0, 1, 2, 1, 0, 1, 1, 0, 1, 1, 0, 3, 0, 0, 1, 1, 1, 2, 0, 2, 1, 1, 0, 1, 0, 0, 2, 1, 1, 2, 0, 1, 2, 0, 0, 3, 1, 0, 1, 1, 0, 3, 0, 1, 1, 0, 1, 2, 0, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,19
LINKS
FORMULA
G.f.: Sum_{n>=0} x^(5*n+3)/(1 - x^(5*n+3)).
G.f.: Sum_{k>=1} x^(3*k)/(1 - x^(5*k)). - Ilya Gutkovskiy, Sep 11 2019
MATHEMATICA
Join[{0}, Table[d = Divisors[n]; Length[Select[d, Mod[#, 5] == 3 &]], {n, 100}]] (* T. D. Noe, Aug 10 2012 *)
Table[Count[Divisors[n], _?(Mod[#, 5]==3&)], {n, 0, 90}] (* Harvey P. Dale, Nov 08 2012 *)
PROG
(PARI) a(n) = if (n==0, 0, sumdiv(n, d, (d % 5)==3)); \\ Michel Marcus, Feb 28 2021
CROSSREFS
Sequence in context: A035168 A255647 A119241 * A056558 A320808 A338203
KEYWORD
nonn
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 October 4 02:45 EDT 2023. Contains 365872 sequences. (Running on oeis4.)