The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A051500 a(n) = (3^n + 1)^2/4. 3
1, 4, 25, 196, 1681, 14884, 133225, 1196836, 10764961, 96864964, 871725625, 7845353476, 70607649841, 635467254244, 5719200505225, 51472790198116, 463255068736321, 4169295489486724, 37523659017960025, 337712929999378756, 3039416366507624401 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A007051(n)^2. - Michel Marcus, Jun 08 2013
From Colin Barker, Feb 10 2016: (Start)
a(n) = 13*a(n-1) - 39*a(n-2) + 27*a(n-3) for n > 2.
G.f.: (1-9*x+12*x^2) / ((1-x)*(1-3*x)*(1-9*x)). (End)
E.g.f.: (1/4)*(exp(x) + 2*exp(3*x) + exp(9*x)). - G. C. Greubel, May 22 2023
MATHEMATICA
(3^Range[0, 20]+1)^2/4 (* or *) LinearRecurrence[{13, -39, 27}, {1, 4, 25}, 30] (* Harvey P. Dale, Nov 05 2016 *)
PROG
(PARI) Vec((1-9*x+12*x^2)/((1-x)*(1-3*x)*(1-9*x)) + O(x^30)) \\ Colin Barker, Feb 10 2016
(Python)
def A051500(n): return (3**n+1)**2>>2 # Chai Wah Wu, Nov 14 2022
(Magma) [(3^n+1)^2/4: n in [0..40]]; // G. C. Greubel, May 22 2023
(SageMath) [((3^n+1)//2)^2 for n in range(41)] # G. C. Greubel, May 22 2023
CROSSREFS
Cf. A007051.
Sequence in context: A060908 A322442 A036449 * A206179 A151342 A001246
KEYWORD
nonn,easy
AUTHOR
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 May 13 12:32 EDT 2024. Contains 372519 sequences. (Running on oeis4.)