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.

A305574 Number of primitive (1,1) pairs in the Fibonacci tree at depth 3n.

Original entry on oeis.org

5, 2, 7, 30, 143, 728, 3876, 21318, 120175, 690690, 4032015, 23841480, 142498692, 859515920, 5225264024, 31983672534, 196947587823, 1219199353190, 7583142491925, 47365474641870, 296983176369495, 1868545312633440, 11793499763070480, 74650344244967400
Offset: 1

Views

Author

Jeffrey Shallit, Jun 05 2018

Keywords

References

  • John Charles Saunders, Problems in Combinatorial and Analytic Number Theory, Ph. D. thesis, University of Waterloo, 2018.

Crossrefs

Cf. A006013.

Programs

  • PARI
    {a(n) = my(A); if( n<=1, 5*(n==1), A = O(x); for(k=1, n, A = x / (1 - A)^2); polcoeff(A, n))}; /* Michael Somos, Dec 10 2019 */

Extensions

More terms added and a(14) corrected by Michael Somos, Dec 10 2019