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!)
A176827 G.f.: Sum_{n>=0} a(n)*x^n/3^(n(n-1)/2) = exp( Sum_{n>=1} A(x/3^n)^n*x^n/n ). 0
1, 1, 4, 43, 1288, 111874, 28513474, 21447796411, 47864888436352, 318138497623694374, 6313455845922307358476, 374710369870861989860068222, 66586966437639051221223067992430 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
More generally, coefficients a(n,q) that satisfy:
. A(x,q) = Sum_{n>=0} a(n,q)*x^n/q^(n(n-1)/2) such that
. A(x,q) = exp( Sum_{n>=1} A(x/q^n,q)^n * x^n/n )
begin:
a(0,q) = 1; a(1,q) = 1; a(2,q) = q + 1; a(3,q) = q^3 + q^2 + 2*q + 1;
a(4,q) = q^6 + q^5 + 5/2*q^4 + 3*q^3 + 5/2*q^2 + 3*q + 1;
a(5,q) = q^10 + q^9 + 5/2*q^8 + 5*q^7 + 11/2*q^6 + 4*q^5 + 15/2*q^4 + 6*q^3 + 9/2*q^2 + 4*q + 1; ...
Conjecture: {a(n,q), n>=0} are integers when q is a positive integer.
Conjecture: a(n,q) = 1 (mod q) for n>=0 when q is a positive integer. [From Paul D. Hanna, Apr 29 2010]
LINKS
EXAMPLE
G.f.: A(x) = 1 + x + 4*x^2/3 + 43*x^3/3^3 + 1288*x^4/3^6 + 111874*x^5/3^10 +...
log(A(x)) = A(x/3)*x + A(x/9)^2*x^2/2 + A(x/27)^3*x^3/3 + A(x/81)^4*x^4/4 +...
PROG
(PARI) {a(n)=local(A=1+x); for(n=2, n, A=exp(sum(k=1, n, subst(A, x, x/3^k+x*O(x^n))^k*x^k/k))); 3^(n*(n-1)/2)*polcoeff(A, n)}
CROSSREFS
Cf. A159592.
Sequence in context: A153255 A015084 A355081 * A220675 A222979 A284192
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 27 2010
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 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)