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.

A171732 a(n) = Sum_{d|n} d*2^(d^2).

This page as a plain text file.
%I A171732 #8 Aug 20 2023 10:50:29
%S A171732 2,34,1538,262178,167772162,412316861986,3940649673949186,
%T A171732 147573952589676675106,21760664753063325144712706,
%U A171732 12676506002282294014967199825954,29243015907268149203883755326167580674,267608942382367477698428619271780750388889122
%N A171732 a(n) = Sum_{d|n} d*2^(d^2).
%e A171732 L.g.f.: L(x) = 2*x + 34*x^2/2 + 1538*x^3/3 + 262178*x^4/4 + ...
%e A171732 exp(L(x)) = 1 + 2*x + 19*x^2 + 548*x^3 + 66749*x^4 + ... (A158099).
%t A171732 a[n_] := DivisorSum[n, # * 2^(#^2) &]; Array[a, 10] (* _Amiram Eldar_, Aug 18 2023 *)
%o A171732 (PARI) a(n)=sumdiv(n, d, d*2^(d^2))
%Y A171732 Cf. A158099.
%K A171732 nonn
%O A171732 1,1
%A A171732 _Paul D. Hanna_, Dec 16 2009
%E A171732 a(11)-a(12) from _Amiram Eldar_, Aug 18 2023