login
A348643
a(n) = (16*n + 1)*(2592*n^2 + 288*n + 7).
4
7, 49079, 361383, 1185751, 2771015, 5366007, 9219559, 14580503, 21697671, 30819895, 42196007, 56074839, 72705223, 92335991, 115215975, 141594007, 171718919, 205839543, 244204711, 287063255, 334664007, 387255799, 445087463, 508407831, 577465735, 652510007, 733789479, 821552983
OFFSET
0,1
COMMENTS
a(n) is the entry (1,1) of a family of unimodular matrices none of whose entries is 1 or -1, such that when each entry of the matrix is replaced by its cube, the resulting matrix is also unimodular.
In these matrices, the entries (1,3) and (3,1) = 2; the entries (2,3) and (3,2) = 3; the entry (3,3) = 0.
EXAMPLE
From Elmo R. Oliveira, Sep 03 2025: (Start)
G.f.: (7 + 49051*x + 165109*x^2 + 34665*x^3)/(x-1)^4.
E.g.f.: (7 + 49072*x + 131616*x^2 + 41472*x^3)*exp(x).
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4). (End)
MATHEMATICA
A348643[n_] := (16*n + 1)*(288*n*(9*n + 1) + 7);
Array[A348643, 30, 0] (* Paolo Xausa, Jun 30 2026 *)
PROG
(PARI) a(n) = (16*n + 1)*(2592*n^2 + 288*n + 7);
CROSSREFS
KEYWORD
nonn,easy,changed
AUTHOR
Michel Marcus, Oct 27 2021
STATUS
approved