cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A029934 Denominator of n * Product_{d|n} (1 + 1/d).

This page as a plain text file.
%I A029934 #15 Jul 08 2025 19:26:09
%S A029934 1,1,1,1,1,1,1,4,3,5,1,6,1,7,5,32,1,27,1,20,21,11,1,64,5,13,27,49,1,
%T A029934 375,1,512,11,17,35,5832,1,19,39,3200,1,147,1,242,135,23,1,24576,7,
%U A029934 625,17,676,1,6561,55,10976,57,29
%N A029934 Denominator of n * Product_{d|n} (1 + 1/d).
%H A029934 Amiram Eldar, <a href="/A029934/b029934.txt">Table of n, a(n) for n = 1..10000</a>
%p A029934 with(numtheory): f := proc(n) local i,j; j := n; for i in divisors(n) do j := j*(1+1/i); od; end;
%t A029934 dp[n_]:=Denominator[n*Times@@(1+1/#&/@Divisors[n])]; Array[dp,60] (* _Harvey P. Dale_, Mar 23 2012 *)
%Y A029934 Cf. A029933 (numerators).
%K A029934 nonn
%O A029934 1,8
%A A029934 _N. J. A. Sloane_