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.

A141747 a(n) is the number of nonnegative integer pairs i,j such that n = 2^i + 3^j.

Original entry on oeis.org

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

Views

Author

Clark Kimberling, Jul 01 2008

Keywords

Examples

			a(5) = 2, using (i,j) = (1,1) and (2,0).
		

Crossrefs

Programs

  • Maple
    f:= proc(n) local j,t,s;
      t:= 0;
      for j from 0 to floor(log[3](n)) do
        s:= n - 3^j;
        if s = 2^padic:-ordp(s,2) then t:= t+1 fi
      od;
      t
    end proc:
    map(f, [$1..200]); # Robert Israel, Jun 08 2020

Formula

G.f.: ( Sum_{i>=0} x^(2^i) ) * ( Sum_{j>=0} x^(3^j) ). - Ilya Gutkovskiy, Feb 10 2022