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!)
A347319 a(n) = (2*n+1)*(n^3-2*n^2+n+1). 3
1, 3, 15, 91, 333, 891, 1963, 3795, 6681, 10963, 17031, 25323, 36325, 50571, 68643, 91171, 118833, 152355, 192511, 240123, 296061, 361243, 436635, 523251, 622153, 734451, 861303, 1003915, 1163541, 1341483, 1539091, 1757763, 1998945, 2264131, 2554863, 2872731, 3219373, 3596475, 4005771 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
From Chai Wah Wu, Sep 12 2021: (Start)
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5) for n > 4.
G.f.: (-3*x^4 - 36*x^3 - 10*x^2 + 2*x - 1)/(x - 1)^5. (End)
PROG
(Python)
def A347319(n): return n*(n**2*(2*n - 3) + 3) + 1 # Chai Wah Wu, Sep 12 2021
(PARI) a(n)=2*n+1)*(n^3-2*n^2+n+1 \\ Charles R Greathouse IV, Oct 21 2022
CROSSREFS
A bisection of A146212, analogous to A344866 and A344907.
Sequence in context: A336743 A034954 A077783 * A047019 A099251 A364740
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Sep 12 2021
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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)