login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A094506
Numerator of I(n) = (-1) * Integral_{x=0..4^n} (1-x^(3/2)) dx.
0
44, 1968, 65216, 2095872, 67103744, 2147463168, 68719394816, 2199022927872, 70368742866944, 2251799808442368, 72057594016956416, 2305843009129807872, 73786976294502662144, 2361183241433480429568, 75557863725908954710016
OFFSET
1,1
COMMENTS
The denominator is always 5.
FORMULA
a(n) = -20 * 4^(n-1) + 64 * 2^(5*n-5) for n >= 1.
G.f.: 4*x*(11+96*x) / ( (32*x-1)*(4*x-1) ). - R. J. Mathar, Feb 04 2021
MATHEMATICA
f[n_] := (-Integrate[1 - x^(3/2), {x, 0, 4^n}])5; Table[ f[n], {n, 15}] (* Robert G. Wilson v, Sep 02 2004 *)
Table[- 20 4^(n - 1) + 64 2^(5 n - 5), {n, 20}] (* Vincenzo Librandi, Jul 25 2015 *)
LinearRecurrence[{36, -128}, {44, 1968}, 20] (* Harvey P. Dale, Feb 10 2022 *)
PROG
(PARI) for(n=1, 15, print1(64*2^(5*n-5)-20*4^(n-1), ", "))
(Magma) [-20*4^(n-1)+64*2^(5*n-5): n in [1..20]]; // Vincenzo Librandi, Jul 25 2015
CROSSREFS
Sequence in context: A188871 A009988 A041925 * A121008 A250446 A233941
KEYWORD
easy,nonn
AUTHOR
Al Hakanson (Hawkuu(AT)excite.com), Jun 05 2004
EXTENSIONS
Edited by Rick L. Shepherd, Jun 06 2004
STATUS
approved