login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A038039 a(n) = Sum_{d|n} (2^d*3^(n/d)). 1
6, 30, 78, 246, 582, 1830, 4758, 14358, 41118, 122430, 360438, 1079742, 3213222, 9624990, 28798926, 86319894, 258673542, 775718310, 2326095798, 6976966422, 20927018814, 62775429150, 188311523478, 564911643486, 1694677889958 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
For n = 3, the divisors are 1 and 3, the sum is 2^1 * 3^3 + 2^3 * 3^1 = 54 + 24 = 78.
MATHEMATICA
Table[Total[2^Divisors[n] 3^(n/Divisors[n])], {n, 30}] (* Harvey P. Dale, Nov 08 2017 *)
PROG
(PARI) a(n) = sumdiv(n, d, 2^d*3^(n/d)); \\ Michel Marcus, Oct 05 2020
CROSSREFS
Equals 6*A034735(n).
Sequence in context: A152743 A215906 A305163 * A258903 A050972 A259918
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 28 06:27 EDT 2024. Contains 372020 sequences. (Running on oeis4.)