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.

A317675 Coefficients of 3-adic expansion of exp(3).

Original entry on oeis.org

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

Views

Author

Robert Israel, Aug 03 2018

Keywords

Examples

			exp(3) = 1 + 3 + 9/2 + 9/2 + 27/8 + ... = 1 + 3 + 3^2 + 2*3^3 + O(3^4).
		

Crossrefs

Programs

  • Maple
    R:= evalp(exp(3),3,200):
    op([1,3],R);
  • PARI
    N=100; Vecrev(digits(lift(exp(3+O(3^N))), 3), N) \\ Seiichi Manyama, Aug 20 2019