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!)
A322119 Factorial expansion of (1-sqrt(5))/2 = Sum_{n>=1} a(n)/n!. 1
-1, 0, 2, 1, 0, 5, 0, 0, 7, 8, 2, 10, 6, 13, 3, 15, 6, 12, 12, 10, 5, 1, 12, 8, 23, 7, 21, 14, 19, 29, 17, 16, 30, 6, 6, 33, 4, 1, 27, 35, 6, 4, 42, 39, 12, 35, 42, 43, 16, 3, 11, 14, 50, 33, 27, 47, 2, 30, 13, 50, 34, 43, 3, 63, 42, 2, 25, 13, 3, 8, 25, 20, 11, 42, 6, 27, 42, 38, 7, 20 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
This expansion can also be considered as the expansion of -1/(golden ratio).
LINKS
EXAMPLE
(1-sqrt(5))/2 = -1 + 2/3! + 1/4! + 5/6! + 7/9! + 8/10! + 2/11! + ...
MATHEMATICA
With[{b = -1/GoldenRatio}, Table[If[n == 1, Floor[b], Floor[n!*b] - n*Floor[(n - 1)!*b]], {n, 1, 100}]]
PROG
(PARI) default(realprecision, 250); b = (1-sqrt(5))/2; for(n=1, 80, print1(if(n==1, floor(b), floor(n!*b) - n*floor((n-1)!*b)), ", "))
(Magma) SetDefaultRealField(RealField(250)); [Floor((1-Sqrt(5))/2)] cat [Floor(Factorial(n)*(1-Sqrt(5))/2) - n*Floor(Factorial((n-1))*(1-Sqrt(5))/2) : n in [2..80]];
(Sage)
def a(n):
if (n==1): return floor(-1/golden_ratio)
else: return expand(floor(factorial(n)*(-1/golden_ratio)) - n*floor(factorial(n-1)*(-1/golden_ratio)))
[a(n) for n in (1..80)]
CROSSREFS
Cf. A001622, A068451, A094214 (decimal expansion, negated).
Sequence in context: A185411 A254882 A086095 * A363731 A112334 A113469
KEYWORD
sign
AUTHOR
G. C. Greubel, Nov 26 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 24 19:37 EDT 2024. Contains 371963 sequences. (Running on oeis4.)