editing
proposed
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”).
editing
proposed
editing
proposed
(Ruby)
def s(k, m, n)
s = 0
(1..n).each{|i| s += i if n % i == 0 && i % k == m}
s
end
def A109091(n)
(1..n).map{|i| s(5, 1, i) + s(5, 4, i) - s(5, 2, i) - s(5, 3, i)}
end # Seiichi Manyama, Apr 01 2017
reviewed
editing
proposed
reviewed
editing
proposed
Watson, G. N.; Ramanujans Vermutung ueber Zerfaellungsanzahlen. J. Reine Angew. Math. (Crelle), 179 (1938), 97-128. This is the expression B^5/C in the notation of p. 106. [Added by N. J. A. Sloane, Nov 13 2009]
G. N. Watson, <a href="http://www.digizeitschriften.de/dms/img/?PID=GDZPPN002174499&physid=phys107
GDZ, <a href="http://gdz.sub.uni-goettingen.de/no_cache/dms/load/toc/?IDDOC=238618">Digitized volumes of Crelle</a> [Added by N. J. A. Sloane, Nov 13 2009]
approved
editing
Seiichi Manyama, <a href="/A109091/b109091_1.txt">Table of n, a(n) for n = 1..10000</a>
proposed
approved