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!)
A308264 Number of ordered factorizations of n into triangular numbers > 1. 2
1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,18
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = x + Sum_{k>=2} A(x^(k*(k+1)/2)).
a(1) = 1; a(n) = Sum_{d|n, d<n} A010054(n/d)*a(d).
MATHEMATICA
terms = 100; A[_] = 0; Do[A[x_] = x + Sum[A[x^(k (k + 1)/2)], {k, 2, terms}] + O[x]^(terms + 1) // Normal, terms + 1]; Rest[CoefficientList[A[x], x]]
a[n_] := If[n == 1, n, Sum[If[(d < n && IntegerQ[Sqrt[8 n/d + 1]]), a[d], 0], {d, Divisors[n]}]]; Table[a[n], {n, 1, 100}]
PROG
(PARI)
A010054(n) = issquare(1 + 8*n);
A308264(n) = if(1==n, n, sumdiv(n, d, if(d<n, A010054(n/d)*A308264(d), 0))); \\ Antti Karttunen, Oct 05 2023
CROSSREFS
Cf. A000217, A010054, A085782 (for n > 1, positions of nonzero terms).
Not the absolute values of A365800.
Sequence in context: A345197 A092575 A365800 * A065335 A230264 A374208
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 17 2019
EXTENSIONS
Data section extended to 105 terms by Antti Karttunen, Oct 05 2023
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 July 14 13:09 EDT 2024. Contains 374318 sequences. (Running on oeis4.)