login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A342638 a(0) = 0, a(1) = 1; a(2*n) = a(n), a(2*n+1) = 9*a(n) + a(n+1). 9

%I #8 Mar 30 2021 19:06:11

%S 0,1,1,10,1,19,10,91,1,28,19,181,10,181,91,820,1,37,28,271,19,352,181,

%T 1639,10,271,181,1720,91,1639,820,7381,1,46,37,361,28,523,271,2458,19,

%U 523,352,3349,181,3268,1639,14761,10,361,271,2620,181,3349,1720,15571,91,2458,1639,15571,820

%N a(0) = 0, a(1) = 1; a(2*n) = a(n), a(2*n+1) = 9*a(n) + a(n+1).

%H Alois P. Heinz, <a href="/A342638/b342638.txt">Table of n, a(n) for n = 0..16384</a>

%F G.f.: x * Product_{k>=0} (1 + x^(2^k) + 9*x^(2^(k+1))).

%p a:= proc(n) option remember; `if`(n<2, n, (q->

%p `if`(d=1, 9*a(q)+a(q+1), a(q)))(iquo(n, 2, 'd')))

%p end:

%p seq(a(n), n=0..60); # _Alois P. Heinz_, Mar 17 2021

%t a[0] = 0; a[1] = 1; a[n_] := If[EvenQ[n], a[n/2], 9 a[(n - 1)/2] + a[(n + 1)/2]]; Table[a[n], {n, 0, 60}]

%t nmax = 60; CoefficientList[Series[x Product[(1 + x^(2^k) + 9 x^(2^(k + 1))), {k, 0, Floor[Log[2, nmax]] + 1}], {x, 0, nmax}], x]

%Y Cf. A002487, A116528, A178243, A342603, A342633, A342634, A342635, A342636, A342637.

%K nonn

%O 0,4

%A _Ilya Gutkovskiy_, Mar 17 2021

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)