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!)
A341724 Triangle read by rows: coefficients of expansion of certain sums P_2(n,k) of Fibonacci numbers as a sum of powers. 6
1, -2, 1, 8, -4, 1, -50, 24, -6, 1, 416, -200, 48, -8, 1, -4322, 2080, -500, 80, -10, 1, 53888, -25932, 6240, -1000, 120, -12, 1, -783890, 377216, -90762, 14560, -1750, 168, -14, 1, 13031936, -6271120, 1508864, -242032, 29120, -2800, 224, -16, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Conjectures from Mélika Tebni, Sep 04 2023: (Start)
For 0 < k < p and p prime, T(p,k) == 0 (mod p).
For 0 <= k < n and n = 2^m (m natural number), T(n,k) == 0 (mod n). (End)
REFERENCES
Anthony G. Shannon and Richard L. Ollerton. "A note on Ledin’s summation problem." The Fibonacci Quarterly 59:1 (2021), 47-56. See Table 3.
LINKS
FORMULA
From Mélika Tebni, Sep 04 2023: (Start)
E.g.f. of column k: x^k / ((1-2*sinh(-x))*k!).
T(n,k) = (-1)^(n-k)*binomial(n,k)*A000557(n-k).
Recurrence: T(n,0) = (-1)^n*A000557(n) and T(n,k) = n*T(n-1,k-1) / k, n >= k >= 1. (End)
From Alois P. Heinz, Sep 04 2023: (Start)
|Sum_{k=0..n} T(n,k)| = A000556(n).
Sum_{k=0..n} |T(n,k)| = A005923(n).
Sum_{k=0..n} k * T(n,k) = A341726(n). (End)
EXAMPLE
Triangle begins:
1;
-2, 1;
8, -4, 1;
-50, 24, -6, 1;
416, -200, 48, -8, 1;
-4322, 2080, -500, 80, -10, 1;
53888, -25932, 6240, -1000, 120, -12, 1;
-783890, 377216, -90762, 14560, -1750, 168, -14, 1;
13031936, -6271120, 1508864, -242032, 29120, -2800, 224, -16, 1;
...
MAPLE
egf:= k-> x^k / ((1-2*sinh(-x))*k!):
A341724:= (n, k)-> n! * coeff(series(egf(k), x, n+1), x, n):
seq(print(seq(A341724(n, k), k=0..n)), n=0..8); # Mélika Tebni, Sep 04 2023
CROSSREFS
Column 0 is a signed version of A000557, column 1 is A341727.
Sequence in context: A104988 A343296 A136225 * A089460 A308695 A278111
KEYWORD
sign,tabl
AUTHOR
N. J. A. Sloane, Mar 04 2021
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 16 11:48 EDT 2024. Contains 371711 sequences. (Running on oeis4.)