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!)
A156577 a(2*n+2) = 10*a(2*n+1), a(2*n+1) = 10*a(2*n) - 9^n*A000108(n), a(0) = 1. 3
1, 9, 90, 891, 8910, 88938, 889380, 8890155, 88901550, 888923646, 8889236460, 88889884542, 888898845420, 8888918303988, 88889183039880, 888889778505099, 8888897785050990, 88888916293698870, 888889162936988700 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Hankel transform is 9^binomial(n+1,2).
LINKS
FORMULA
a(n) = Sum_{k=0..n} A120730(n,k) * 9^k.
MATHEMATICA
a[n_]:= a[n]= If[n==0, 1, If[OddQ[n], 10*a[n-1] -9^((n-1)/2)*CatalanNumber[(n-1)/2], 10*a[n-1] ]];
Table[a[n], {n, 0, 30}] (* G. C. Greubel, Jan 04 2022 *)
PROG
(Sage)
def a(n): # a = A156577
if (n==0): return 1
elif (n%2==1): return 10*a(n-1) - 9^((n-1)/2)*catalan_number((n-1)/2)
else: return 10*a(n-1)
[a(n) for n in (0..30)] # G. C. Greubel, Jan 04 2022
CROSSREFS
Sequence in context: A227713 A343366 A057092 * A299872 A173480 A052268
KEYWORD
nonn
AUTHOR
Philippe Deléham, Feb 10 2009
STATUS
approved

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 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)