cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A029826 Expansion of 1/(x^10+x^9-x^7-x^6-x^5-x^4-x^3+x+1) (inverse of Salem polynomial).

This page as a plain text file.
%I A029826 #38 Sep 08 2022 08:44:50
%S A029826 1,-1,1,0,0,1,0,1,0,1,1,1,1,2,1,2,3,2,4,3,5,5,6,8,8,10,12,14,16,20,22,
%T A029826 27,31,37,44,50,61,70,83,98,115,135,159,187,220,259,304,359,420,496,
%U A029826 583,685,807,948,1116,1312,1544
%N A029826 Expansion of 1/(x^10+x^9-x^7-x^6-x^5-x^4-x^3+x+1) (inverse of Salem polynomial).
%C A029826 The root 1.1762808182599175065440703384740350... is the smallest known Salem number (A073011).
%H A029826 Simon Plouffe, <a href="/A029826/b029826.txt">Table of n, a(n) for n = 0..2998</a>
%H A029826 Leonard Lewin, <a href="https://bookstore.ams.org/surv-37">Structural Properties of Polylogarithms</a>, AMS #37. p. 365, 1991.
%H A029826 <a href="/index/Rec#order_10">Index entries for linear recurrences with constant coefficients</a>, signature (-1,0,1,1,1,1,1,0,-1,-1).
%F A029826 a(n) = -a(n-1) + a(n-3) + a(n-4) + a(n-5) + a(n-6) + a(n-7) - a(n-9) - a(n-10). - _Roger L. Bagula_ and _Gary W. Adamson_, Oct 23 2008
%t A029826 LinearRecurrence[{-1,0,1,1,1,1,1,0,-1,-1}, {1,-1,1,0,0,1,0,1,0,1}, 100] (* _G. C. Greubel_, May 07 2018 *)
%o A029826 (PARI) Vec(1/(x^10+x^9-x^7-x^6-x^5-x^4-x^3+x+1)+O(x^66)) \\ _Joerg Arndt_, May 01 2018
%o A029826 (Magma) m:=50; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/(x^10+x^9-x^7-x^6-x^5-x^4-x^3+x+1))); // _G. C. Greubel_, May 07 2018
%Y A029826 Cf. A073011, A125950.
%K A029826 sign,easy
%O A029826 0,14
%A A029826 _Simon Plouffe_