The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A141014 E.g.f. Sum_{d|M} (exp(d*x)-1)/d, M=15. 3
0, 4, 24, 260, 3528, 51332, 762744, 11406980, 170939688, 2563287812, 38445332184, 576660215300, 8649804864648, 129746582562692, 1946196290656824, 29192932133689220, 437893920912786408 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = sum_{d|15} d^(n-1) = 1+3^(n-1)+5^(n-1)+15^(n-1). G.f.: -4*x*(-1+18*x-79*x^2+90*x^3)/((x-1) * (15*x-1) * (3*x-1) * (5*x-1)). a(n) = 24*a(n-1) -158*a(n-2) +360*a(n-3) -225*a(n-4). - R. J. Mathar, Mar 05 2010
a(n) = A034472(n-1)*A034474(n-1). - R. J. Mathar, May 26 2016
MAPLE
A141014 := proc(n) local d; add(d^(n-1), d=numtheory[divisors](15)) ; end proc: seq(A141014(n), n=1..20) ; # R. J. Mathar, Mar 05 2010
MATHEMATICA
CoefficientList[Series[-4 x (-1 + 18 x - 79 x^2 + 90 x^3)/((x-1) (15 x-1) (3 x-1) (5 x-1)), {x, 0, 40}], x] (* Vincenzo Librandi, Dec 13 2012 *)
LinearRecurrence[{24, -158, 360, -225}, {0, 4, 24, 260, 3528}, 20] (* Harvey P. Dale, May 18 2023 *)
PROG
(Magma) [0] cat [1+3^(n-1)+5^(n-1)+15^(n-1): n in [1..20]]; // Vincenzo Librandi, Dec 13 2012
CROSSREFS
Sequence in context: A176785 A318000 A095340 * A340023 A192983 A077700
KEYWORD
nonn,easy
AUTHOR
R. J. Mathar, Jul 11 2008
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 May 17 16:19 EDT 2024. Contains 372603 sequences. (Running on oeis4.)