back to table · edit · history · where entries came from · files
language: Sage code: "R.<x> = ZZ[]\ndef lucas_polynomial(n):\n a, b = R(2), x\n for _ in\- \ range(n): a, b = b, x*b + a\n return a\npolynomials = {n: lucas_polynomial(n)\- \ for n in [0..150]}"+ \ range(n):\n a, b = b, x*b + a\n return a\n\nlucas_polynomial(101)\+ \ # the next one after this table" Links: Wiki:
Sign in to restore an earlier version.