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!)
A075883 a(1) = a(2) = 1; a(n) = a(n-1) + a(n-2)! for n > 2. 1
1, 1, 2, 3, 5, 11, 131, 39916931 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
The next term (a(9)) has 222 digits. - Harvey P. Dale, Apr 22 2014
LINKS
MATHEMATICA
a = {1, 1}; For[i = 3, i <= 8, i++, c = (a[[i - 1]] + a[[i - 2]]!); a = Append[a, c]]; a
RecurrenceTable[{a[1]==a[2]==1, a[n]==a[n-1]+a[n-2]!}, a, {n, 8}] (* Harvey P. Dale, Apr 22 2014 *)
CROSSREFS
Sequence in context: A056163 A118573 A051835 * A195815 A327428 A220346
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Oct 17 2002
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 August 13 22:54 EDT 2024. Contains 375146 sequences. (Running on oeis4.)