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!)
A346077 a(n) = 1 + Sum_{k=1..n-5} a(k) * a(n-k-5). 3
1, 1, 1, 1, 1, 1, 2, 3, 4, 5, 6, 8, 12, 18, 26, 36, 49, 69, 101, 150, 221, 320, 460, 667, 981, 1456, 2161, 3191, 4698, 6932, 10283, 15324, 22870, 34103, 50813, 75770, 113229, 169590, 254340, 381579, 572537, 859511, 1291681, 1943489, 2926980, 4410709, 6649220, 10028570 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 / (1 - x) + x^5 * A(x) * (A(x) - 1).
MATHEMATICA
a[n_] := a[n] = 1 + Sum[a[k] a[n - k - 5], {k, 1, n - 5}]; Table[a[n], {n, 0, 47}]
nmax = 47; A[_] = 0; Do[A[x_] = 1/(1 - x) + x^5 A[x] (A[x] - 1) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
PROG
(SageMath)
@CachedFunction
def a(n): # a = A346077
if (n<6): return 1
else: return 1 + sum(a(k)*a(n-k-5) for k in range(1, n-4))
[a(n) for n in range(51)] # G. C. Greubel, Nov 27 2022
CROSSREFS
Sequence in context: A092232 A060322 A143285 * A335303 A337448 A019532
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 04 2021
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 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)