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!)
A298419 a(n) = n*a(n-1) - a(n-2) + a([n/2]), where a(0) = 1, a(1) = 1, a(2) = 1. 1
1, 1, 1, 3, 12, 58, 339, 2318, 18217, 161647, 1598311, 17419832, 207440012, 2679300663, 37302771588, 556862275475, 8872493654229, 150275529864635, 2696087044070848, 51075378307643124, 1018811479110389943, 21343965683012143990, 468548433547174197669 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
MATHEMATICA
a[0] = 1; a[1] = 1; a[2] = 1;
a[n_] := a[n] = n a[n - 1] - a[n - 2] + a[Floor[n/2]];
Table[a[n], {n, 0, 30}] (* A298419 *)
CROSSREFS
Cf. A298338.
Sequence in context: A020030 A121393 A003316 * A126959 A181328 A058861
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 11 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 July 31 04:10 EDT 2024. Contains 374774 sequences. (Running on oeis4.)