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!)
A001899 Number of divisors of n of the form 5k+4; a(0) = 0. 14

%I #28 Nov 25 2023 04:34:57

%S 0,0,0,0,1,0,0,0,1,1,0,0,1,0,1,0,1,0,1,1,1,0,0,0,2,0,0,1,2,1,0,0,1,0,

%T 1,0,2,0,1,1,1,0,1,0,2,1,0,0,2,1,0,0,1,0,2,0,2,1,1,1,1,0,0,1,2,0,0,0,

%U 2,1,1,0,3,0,1,0,2,0,1,1,1,1,0,0,3,0,0

%N Number of divisors of n of the form 5k+4; a(0) = 0.

%H T. D. Noe, <a href="/A001899/b001899.txt">Table of n, a(n) for n = 0..10000</a>

%H R. A. Smith and M. V. Subbarao, <a href="https://doi.org/10.4153/CMB-1981-005-3">The average number of divisors in an arithmetic progression</a>, Canadian Mathematical Bulletin, Vol. 24, No. 1 (1981), pp. 37-41.

%F G.f.: Sum_{n>=0} x^(5*n+4)/(1 - x^(5*n+4)).

%F G.f.: Sum_{k>=1} x^(4*k)/(1 - x^(5*k)). - _Ilya Gutkovskiy_, Sep 11 2019

%F Sum_{k=1..n} a(k) = n*log(n)/5 + c*n + O(n^(1/3)*log(n)), where c = gamma(4,5) - (1 - gamma)/5 = A256849 - (1 - A001620)/5 = -0.213442... (Smith and Subbarao, 1981). - _Amiram Eldar_, Nov 25 2023

%t Join[{0}, Table[d = Divisors[n]; Length[Select[d, Mod[#, 5] == 4 &]], {n, 100}]] (* _T. D. Noe_, Aug 10 2012 *)

%o (PARI) a(n) = if (n==0, 0, sumdiv(n, d, (d % 5)==4)); \\ _Michel Marcus_, Feb 28 2021

%Y Cf. A001876, A001877, A001878.

%Y Cf. A001620, A256849.

%K nonn,easy

%O 0,25

%A _N. J. A. Sloane_

%E Better definition from _Michael Somos_, Aug 31 2004

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 24 18:17 EDT 2024. Contains 371962 sequences. (Running on oeis4.)