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.

A037011 Baum-Sweet cubic sequence.

Original entry on oeis.org

1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0
Offset: 1

Views

Author

Keywords

Comments

Memo: more sequences like this should be added to the database.

Crossrefs

Programs

  • Maple
    A := x; for n from 1 to 100 do series(x+x*A^3+O(x^(n+2)),x,n+2); A := series(% mod 2,x,n+2); od: A;
  • Mathematica
    m = 100; A[_] = 0;
    Do[A[x_] = x + x A[x]^3 + O[x]^m // Normal // PolynomialMod[#, 2]&, {m}];
    CoefficientList[A[x], x] // Rest (* Jean-François Alcover, Oct 15 2019 *)

Formula

G.f. satisfies A^3+x^(-1)*A+1 = 0 (mod 2).
It appears that a(n)=sum(k=0, n-1, C(n-1+k, n-1-k)*C(n-1, k)) modulo 2 = A082759(n-1) (mod 2). It appears also that a(k)=1 iff k/3 is in A003714. - Benoit Cloitre, Jun 20 2003
From Antti Karttunen, Nov 03 2017: (Start)
If Cloitre's above observation holds, then we also have (assuming starting offset 0, with a(0) = 1):
a(n) = A000035(A106737(n)).
a(n) = A010052(A005940(1+n)).
(End)