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!)
A272646 a(0)=a(1)=1; thereafter a(n) = (4*n-3)*a(n-1) + 2*a(n-2). 0
1, 1, 7, 65, 859, 14733, 311111, 7807241, 227032211, 7507677445, 278238129887, 11422778680257, 514581516871339, 25237339884056125, 1338608176888717303, 76351140762424998521, 4660096802861702344387, 303058994467535502382197, 20920390811865673069060367, 1527794647255129205046171185 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
D. H. Lehmer, Arithmetical periodicities of Bessel functions, Annals of Mathematics, 33 (1932): 143-150. The sequence is on page 148.
MAPLE
f:=proc(n) option remember; if n <= 1 then 1 else 2*f(n-2)+(4*n-3)*f(n-1); fi; end;
[seq(f(n), n=0..30)];
MATHEMATICA
RecurrenceTable[{a[0]==a[1]==1, a[n]==(4n-3)a[n-1]+2a[n-2]}, a, {n, 20}] (* Harvey P. Dale, Apr 07 2019 *)
CROSSREFS
Sequence in context: A069015 A097819 A152525 * A220067 A109779 A239984
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, May 09 2016
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 16 14:51 EDT 2024. Contains 371749 sequences. (Running on oeis4.)