The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A255831 Square array A(m,n) = Resultant(X^m+n,(X+1)^m+n), read by (falling) antidiagonals, m >= 1, n >= 0. 1
1, 1, 1, 1, 5, 1, 1, 9, 28, 1, 1, 13, 109, 153, 1, 1, 17, 244, 1617, 3751, 1, 1, 21, 433, 5929, 52501, 175760, 1, 1, 25, 676, 14625, 258751, 3261249, 6835648, 1, 1, 29, 973, 29241, 810001, 19763200, 148756357, 1051779953, 1, 1, 33, 1324, 51313, 1968751, 73559825, 1086478912, 23937893793, 364668913756, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
This polynomial resultant gives the period for solutions to the equations A255852 - A255869. For example, A010034(n) = A255859(17) + A(17,9)*(n-1). In general, there may be more than one starting solutions (cf. A118119).
LINKS
EXAMPLE
The square array starts at its upper left as follows:
[ 1 1 1 1 1 1 1 ... ]
[ 1 5 9 13 17 21 25 ... ]
[ 1 28 109 244 433 676 973 ... ]
[ 1 153 1617 5929 14625 29241 51313 ... ]
[ 1 3751 52501 258751 810001 1968751 4072501 ... ]
[ 1 175760 3261249 19763200 73559825 207499536 488999665 ... ]
[ : : : : : : : ·. ]
[ : : : : : : : ·.]
PROG
(PARI) A255831(m, n)=polresultant('x^m+n, ('x+1)^m+n)
(Python)
from sympy import resultant
from sympy.abc import x
def A255831_T(m, n): return resultant(x**m+n, (x+1)**m+n) # Chai Wah Wu, May 08 2024
CROSSREFS
Sequence in context: A184883 A279003 A210651 * A363970 A356113 A188461
KEYWORD
nonn,tabl
AUTHOR
M. F. Hasler, Mar 17 2015
EXTENSIONS
Edited by Max Alekseyev, Aug 07 2015
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 June 1 05:22 EDT 2024. Contains 373010 sequences. (Running on oeis4.)