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.

A074225 a(n) = n * Sum_{d|n} d*2^(d-1).

This page as a plain text file.
%I A074225 #20 Dec 03 2015 04:31:04
%S A074225 1,10,39,148,405,1254,3143,8488,20853,52050,123915,297804,692237,
%T A074225 1611974,3687795,8405584,18939921,42512562,94634003,209819940,
%U A074225 462431697,1015269486,2218786839,4832458392,10485762025,22684180610,48922424415,105229923596
%N A074225 a(n) = n * Sum_{d|n} d*2^(d-1).
%H A074225 Colin Barker, <a href="/A074225/b074225.txt">Table of n, a(n) for n = 1..1000</a>
%H A074225 N. J. A. Sloane and Thomas Wieder, <a href="http://arXiv.org/abs/math.CO/0307064">The Number of Hierarchical Orderings</a>, arXiv:math/0307064 [math.CO], 2003.
%H A074225 N. J. A. Sloane and Thomas Wieder, <a href="http://dx.doi.org/10.1007/s11083-004-9460-9">The Number of Hierarchical Orderings</a>, Order 21 (2004), 83-89.
%t A074225 a[n_] := n*DivisorSum[n, #*2^(#-1)&]; Array[a, 30] (* _Jean-François Alcover_, Dec 03 2015 *)
%o A074225 (PARI) vector(100, n, n*sumdiv(n, d, d*2^(d-1))) \\ _Colin Barker_, Jan 29 2015
%Y A074225 Equals n*A083413(n).
%K A074225 nonn
%O A074225 1,2
%A A074225 _N. J. A. Sloane_, Jun 15 2003