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”).

A078809
Number of divisors of the average of consecutive odd primes.
1
3, 4, 3, 6, 4, 6, 4, 4, 8, 4, 4, 8, 6, 6, 8, 12, 7, 4, 12, 6, 5, 4, 4, 6, 8, 8, 12, 4, 16, 4, 4, 8, 15, 12, 8, 12, 8, 8, 10, 18, 8, 14, 8, 12, 4, 4, 9, 12, 8, 6, 20, 8, 4, 12, 8, 16, 4, 6, 8, 18, 18, 4, 16, 12, 15, 4, 12, 12, 8, 6, 6, 8, 8, 4, 4, 4, 8, 10, 12, 24, 8, 20, 6, 9, 4, 4, 8, 16, 8, 4, 8, 4
OFFSET
1,1
LINKS
EXAMPLE
The first pair of consecutive odd primes is 3,5, with average = 4 and tau(4) = 3. Hence a(1) = 3. The second pair of consecutive odd primes is 5,7, with average = 6 and tau(6) = 4, so a(2) = 4.
MATHEMATICA
Table[DivisorSigma[0, (Prime[i] + Prime[i + 1])/2], {i, 2, 101}]
DivisorSigma[0, #]&/@(Mean/@Partition[Prime[Range[2, 100]], 2, 1]) (* Harvey P. Dale, Jul 06 2021 *)
CROSSREFS
Sequence in context: A242801 A021295 A061112 * A245218 A097857 A176058
KEYWORD
easy,nonn
AUTHOR
Joseph L. Pe, Jan 11 2003
STATUS
approved