The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A308263 Number of ordered factorizations of n into Lucas numbers (beginning at 2) > 1. 0
1, 1, 1, 2, 0, 2, 1, 3, 1, 0, 1, 5, 0, 2, 0, 5, 0, 4, 0, 0, 2, 2, 0, 10, 0, 0, 1, 5, 1, 0, 0, 8, 2, 0, 0, 11, 0, 0, 0, 0, 0, 6, 0, 5, 0, 0, 1, 20, 1, 0, 0, 0, 0, 6, 0, 10, 0, 2, 0, 0, 0, 0, 3, 13, 0, 6, 0, 0, 0, 0, 0, 27, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0, 0, 18, 0, 0, 2, 10 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = x + A(x^2) + Sum_{k>=2} A(x^Lucas(k)).
MATHEMATICA
terms = 88; A[_] = 0; Do[A[x_] = x + A[x^2] + Sum[A[x^LucasL[k]], {k, 2, 25}] + O[x]^(terms + 1) // Normal, terms + 1]; Rest[CoefficientList[A[x], x]]
f[n_] := f[n] = SeriesCoefficient[x^2 + Sum[x^LucasL[k], {k, 2, 25}], {x, 0, n}]; a[n_] := If[n == 1, n, Sum[If[d < n, f[n/d] a[d], 0], {d, Divisors[n]}]]; Table[a[n], {n, 1, 88}]
CROSSREFS
Cf. A000032, A102460, A200381 (positions of nonzero terms), A200995 (positions of zeros), A308062.
Sequence in context: A339242 A339222 A191247 * A028932 A076473 A163160
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 17 2019
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 June 7 04:05 EDT 2024. Contains 373140 sequences. (Running on oeis4.)