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!)
A292034 Linear divisibility sequence based on Salem number of order 4 (case t=6, see formula). 1
1, 6, 29, 144, 725, 3654, 18409, 92736, 467161, 2353350, 11855141, 59720976, 300847949, 1515539334, 7634619025, 38459844864, 193743743089, 975995564166, 4916635376621, 24767841488400, 124769466312581, 628533565640646, 3166275009522169, 15950297619676224, 80350567588455625 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Marco Abrate, Stefano Barbero, Umberto Cerruti, Nadir Murru, Linear divisibility sequences and Salem numbers, arXiv:1709.01995 [math.NT], 2017.
FORMULA
a(n) = round(lambda(6)*alpha(6)^n)
where alpha(t) = (t+sqrt((t-4)*t+8)+sqrt(2)*sqrt(t*(t+sqrt((t-4)*t+8)-2)-4))/4
and lambda(t) = 1/sqrt((t-4)*t+8).
Conjectures from Colin Barker, Dec 17 2017: (Start)
G.f.: x*(1 - x)*(1 + x) / (1 - 6*x + 6*x^2 - 6*x^3 + x^4).
a(n) = 6*a(n-1) - 6*a(n-2) + 6*a(n-3) - a(n-4) for n>4.
(End)
MATHEMATICA
alpha[t_] := (t + Sqrt[(t - 4) t + 8] + Sqrt[2] Sqrt[t (t + Sqrt[(t - 4) t + 8] - 2) - 4])/4;
lambda[t_] := 1/Sqrt[(t - 4) t + 8];
a[n_] := Round[lambda[6] alpha[6]^n] ;
Array[a, 25] (* Jean-François Alcover, Feb 02 2019 *)
PROG
(PARI) alpha(t) = (t+sqrt((t-4)*t+8)+sqrt(2)*sqrt(t*(t+sqrt((t-4)*t+8)-2)-4))/4;
lambda(t) = 1/sqrt((t-4)*t+8);
a(n) = my(ca=alpha(6), cl=lambda(6)); round(cl*ca^n);
CROSSREFS
Cf. A292035.
Sequence in context: A012325 A125785 A186651 * A108982 A059724 A000708
KEYWORD
nonn
AUTHOR
Michel Marcus, Sep 08 2017
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 09:49 EDT 2024. Contains 372504 sequences. (Running on oeis4.)