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!)
A068457 Factorial expansion of zeta(8) = Sum_{n>=1} a(n)/n!. 4
1, 0, 0, 0, 0, 2, 6, 4, 3, 5, 10, 0, 1, 11, 14, 4, 2, 1, 17, 12, 19, 18, 18, 6, 7, 24, 24, 7, 9, 14, 28, 27, 14, 4, 19, 33, 24, 4, 14, 29, 21, 38, 17, 20, 5, 22, 30, 7, 13, 44, 19, 4, 19, 19, 14, 7, 48, 9, 58, 49, 17, 26, 35, 33, 36, 9, 28, 36, 54, 36, 70, 0, 33, 29, 45, 14, 46, 69 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
MATHEMATICA
t = Zeta[8]; s = {}; Do[n = Floor[t*i!]; t -= n/i!; AppendTo[s, n], {i, 1, 30}]; s (* Amiram Eldar, Nov 25 2018 *)
With[{b = Zeta[8]}, Table[If[n == 1, Floor[b], Floor[n!*b] - n*Floor[(n - 1)!*b]], {n, 1, 100}]] (* G. C. Greubel, Nov 26 2018 *)
PROG
(PARI) vector(30, n, if(n>1, t=t%1*n, t=zeta(8))\1) \\ M. F. Hasler, Nov 25 2018
(PARI) default(realprecision, 250); for(n=1, 80, print1(if(n==1, floor(zeta(8)), floor(n!*zeta(8)) - n*floor((n-1)!*zeta(8))), ", ")) \\ G. C. Greubel, Nov 26 2018
(Magma) SetDefaultRealField(RealField(250)); L:=RiemannZeta(); [Floor(Evaluate(L, 8))] cat [Floor(Factorial(n)*Evaluate(L, 8)) - n*Floor(Factorial((n-1))*Evaluate(L, 8)) : n in [2..80]]; // G. C. Greubel, Nov 26 2018
(Sage)
def A068457(n):
if (n==1): return floor(zeta(8))
else: return expand(floor(factorial(n)*zeta(8)) - n*floor(factorial(n-1)*zeta(8)))
[A068457(n) for n in (1..80)] # G. C. Greubel, Nov 26 2018
CROSSREFS
Cf. A007514, adjacent sequences.
Sequence in context: A283614 A333520 A003571 * A299402 A286451 A102510
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Mar 10 2002
EXTENSIONS
Name edited and keywords cons,easy removed by M. F. Hasler, Nov 25 2018
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)