login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A363878
Number of divisors of 7*n-4 of form 7*k+2.
0
0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 2, 0, 1, 0, 2, 1, 1, 0, 1, 0, 2, 0, 1, 1, 1, 1, 2, 0, 1, 0, 2, 0, 2, 0, 1, 1, 1, 0, 2, 0, 2, 1, 2, 0, 1, 1, 1, 0, 1, 0, 4, 0, 1, 0, 1, 1, 1, 0, 2, 1, 2, 1, 2, 0, 1, 1, 1, 0, 2, 0, 2, 0, 1, 0, 3, 1, 1, 1, 1, 0, 3, 0, 1, 0, 2, 1, 3, 0, 1, 0, 3, 0, 1, 0, 1, 2, 1, 0, 2
OFFSET
1,12
COMMENTS
Also number of divisors of 7*n-4 of form 7*k+5.
FORMULA
a(n) = A363795(7*n-4) = A363807(7*n-4).
G.f.: Sum_{k>0} x^(5*k-3)/(1 - x^(7*k-5)).
G.f.: Sum_{k>0} x^(2*k)/(1 - x^(7*k-2)).
MATHEMATICA
a[n_] := DivisorSum[7*n - 4, 1 &, Mod[#, 7] == 2 &]; Array[a, 100] (* Amiram Eldar, Jun 25 2023 *)
PROG
(PARI) a(n) = sumdiv(7*n-4, d, d%7==2);
CROSSREFS
Sequence in context: A194923 A321103 A358133 * A086372 A342003 A339737
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 25 2023
STATUS
approved