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!)
A270787 Number of Schur rings over Z_{7^n}. 4
1, 4, 21, 113, 614, 3351, 18329, 100372, 550009, 3015021, 16531326, 90653323, 497159809, 2726660260, 14954795741, 82023673921, 449887538266, 2467587944471, 13534552583013, 74236396347076, 407184278878261, 2233396783681309, 12250146572763594, 67191916861119507, 368547111683611193 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Andrew Misseldine, Counting Schur Rings over Cyclic Groups, arXiv preprint arXiv:1508.03757 [math.RA], 2015.
FORMULA
G.f.: (1-x)/(-x^2 + x-1 + 2*(1-x)*sqrt(1-4*x)); equivalently, the g.f. can be rewritten as -y^2*(y^2 - y + 1)/(3*y^4 - 7*y^3 + 8*y^2 - 6*y + 1), where y=A000108(x). - Gheorghe Coserea, Sep 10 2018
MATHEMATICA
c[k_] := Binomial[2k, k]/(k+1);
om[0, _] = 1; om[1, x_] := x; om[n_, x_] := om[n, x] = x om[n-1, x] + Sum[ (c[k-1] x + 1) om[n-k, x], {k, 2, n}];
Table[om[n, 4], {n, 0, 25}] (* Jean-François Alcover, Oct 05 2018, after Gheorghe Coserea *)
PROG
(PARI)
A269750_seq(N, t='t) = {
my(a=vector(N), c(k)=binomial(2*k, k)/(k+1)); a[1]=1; a[2]=t;
for (n = 2, N-1,
a[n+1] = t*a[n] + sum(k = 2, n, (c(k-1)*t+1)*a[n+1-k]));
return(a);
};
A269750_seq(25, numdiv(6)) \\ Gheorghe Coserea, Sep 10 2018
CROSSREFS
Sequence in context: A026335 A027909 A127111 * A190089 A349300 A240436
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Mar 23 2016
EXTENSIONS
More terms from Gheorghe Coserea, Mar 24 2016
a(0)=1 prepended by Gheorghe Coserea, Sep 10 2018
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 06:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)