login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A141747
a(n) is the number of nonnegative integer pairs i,j such that n = 2^i + 3^j.
2
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,5
LINKS
FORMULA
G.f.: ( Sum_{i>=0} x^(2^i) ) * ( Sum_{j>=0} x^(3^j) ). - Ilya Gutkovskiy, Feb 10 2022
EXAMPLE
a(5) = 2, using (i,j) = (1,1) and (2,0).
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
CROSSREFS
Sequence in context: A379289 A216659 A321396 * A239706 A328616 A260736
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jul 01 2008
STATUS
approved