Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
Search: a281964 -id:a281964
Displaying 1-4 of 4 results found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A282132 Imaginary part of n!*Sum_{k=1..n} i^(k-1)/k, where i is sqrt(-1). +10
3
0, 1, 3, 6, 30, 300, 2100, 11760, 105840, 1421280, 15634080, 147692160, 1919998080, 33106993920, 496604908800, 6638004172800, 112846070937600, 2386916704972800, 45351417394483200, 785383247480832000, 16493048197097472000, 413938002507853824000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) ~ log(sqrt(2)) * n!.
a(1) = 0, a(n+1) = a(n)*(n+1) + n!*sin(Pi*n/2).
EXAMPLE
For n=5, a(5) = 30, which is the imaginary part of 5!*(1/1 + i/2 - 1/3 - i/4 + 1/5) = 104+30*i.
PROG
(PARI) a(n) = imag(n!*sum(k=1, n, I^(k-1)/k));
CROSSREFS
The corresponding real part is A281964.
KEYWORD
nonn
AUTHOR
Daniel Suteu, Feb 06 2017
STATUS
approved
A282564 Real part of A000178(n) * Sum_{k=0..n} i^k/k!, where i = sqrt(-1). +10
2
1, 1, 1, 6, 156, 18720, 13443840, 67756953600, 2732085780480000, 991419288020582400000, 3597660477435617162035200000, 143607093745702043133526671360000000, 68788027941331539080620236035063808000000000, 428344480781652673551035086691251861743206400000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) ~ cos(1) * A000178(n).
a(0) = 1, a(n) = n!*a(n-1) + A000178(n-1)*cos(Pi/2*n).
Lim_{n->infinity} a(n)/G(n+2) = cos(1), where G(z) is the Barnes G-function.
EXAMPLE
For n = 4, a(4) = 156, which is the real part of A000178(4)*(1/0! + i/1! - 1/2! - i/3! + 1/4!) = 156+240*i.
PROG
(PARI) a(n) = real(prod(k=0, n, k!) * sum(k=0, n, I^k/k!));
CROSSREFS
The corresponding imaginary part is A282567.
KEYWORD
nonn
AUTHOR
Daniel Suteu, Feb 18 2017
STATUS
approved
A296726 Expansion of e.g.f. arcsin(x)/(1 - x). +10
2
0, 1, 2, 7, 28, 149, 894, 6483, 51864, 477801, 4778010, 53451135, 641413620, 8446433085, 118250063190, 1792012416075, 28672198657200, 491536207523025, 8847651735414450, 169292834944205175, 3385856698884103500, 71531660838216529125, 1573696538440763640750 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Muhammad Adam Dombrowski and Gregory Dresden, Areas Between Cosines, arXiv:2404.17694 [math.CO], 2024.
FORMULA
E.g.f.: -i*log(i*x + sqrt(1 - x^2))/(1 - x), where i is the imaginary unit.
a(n) ~ n! * Pi/2. - Vaclav Kotesovec, Dec 20 2017
a(2*n) = 2*n*a(2*n-1). - Greg Dresden, Apr 04 2024
a(2*n+1) = (2*n+1)*(2*n)*a(2*n-1) + ((2*n-1)!!)^2, using the double factorial notation from A001147. - Greg Dresden, Apr 11 2024
EXAMPLE
arcsin(x)/(1 - x) = x/1! + 2*x^2/2! + 7*x^3/3! + 28*x^4/4! + 149*x^5/5! + ...
MAPLE
a:=series(arcsin(x)/(1 - x), x=0, 23): seq(n!*coeff(a, x, n), n=0..22); # Paolo P. Lava, Mar 27 2019
MATHEMATICA
nmax = 22; CoefficientList[Series[ArcSin[x]/(1 - x), {x, 0, nmax}], x] Range[0, nmax]!
nmax = 22; CoefficientList[Series[-I Log[I x + Sqrt[1 - x^2]]/(1 - x), {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) first(n) = x='x+O('x^n); Vec(serlaplace(asin(x)/(1 - x)), -n) \\ Iain Fox, Dec 19 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 19 2017
STATUS
approved
A296727 Expansion of e.g.f. arcsinh(x)/(1 - x). +10
2
0, 1, 2, 5, 20, 109, 654, 4353, 34824, 324441, 3244410, 34795485, 417545820, 5536151685, 77506123590, 1144330385625, 18309286170000, 315366695240625, 5676600514331250, 106667957800963125, 2133359156019262500, 45229212438054868125, 995042673637207098750, 22696937952367956440625 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: log(x + sqrt(1 + x^2))/(1 - x).
a(n) ~ n! * log(1 + sqrt(2)). - Vaclav Kotesovec, Dec 20 2017
EXAMPLE
arcsinh(x)/(1 - x) = x/1! + 2*x^2/2! + 5*x^3/3! + 20*x^4/4! + 109*x^5/5! + ...
MAPLE
a:=series(arcsinh(x)/(1 - x), x=0, 24): seq(n!*coeff(a, x, n), n=0..23); # Paolo P. Lava, Mar 27 2019
MATHEMATICA
nmax = 23; CoefficientList[Series[ArcSinh[x]/(1 - x), {x, 0, nmax}], x] Range[0, nmax]!
nmax = 23; CoefficientList[Series[Log[x + Sqrt[1 + x^2]]/(1 - x), {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) first(n) = x='x+O('x^n); Vec(serlaplace(asinh(x)/(1 - x)), -n) \\ Iain Fox, Dec 19 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 19 2017
STATUS
approved
page 1

Search completed in 0.007 seconds

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 August 18 18:19 EDT 2024. Contains 375273 sequences. (Running on oeis4.)