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!)
A181865 a(1) = 1, a(2) = 2. For n >= 3, a(n) is found by concatenating the cubes of the first n-1 terms of the sequence and then dividing the resulting number by a(n-1). 9
1, 2, 9, 2081, 90004330561, 2081000000000008100779519733758574721 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The calculations for the first few values of the sequence are
... 2^3 = 8 so a(3) = 18/2 = 9
... 9^3 = 729 so a(4) = 18729/9 = 2081
... 2081^3 = 9011897441 so a(5)=187299011897441/2081 = 90004330561.
For similarly defined sequences see A181754 through A181756 and
A181864 through A181870.
LINKS
FORMULA
DEFINITION
a(1) = 1, a(2) = 2, and for n >= 3
(1)... a(n) = concatenate(a(1)^3,a(2)^3,...,a(n-1)^3)/a(n-1).
RECURRENCE RELATION
For n >= 2
(2)... a(n+2) = a(n+1)^2 + 10^F(n,3)*a(n),
where F(n,3) is the Fibonacci polynomial F(n,x) evaluated at x = 3.
F(n,3) = A006190(n).
MAPLE
M:=7:
a:=array(1..M):s:=array(1..M):
a[1]:=1:a[2]:=2:
s[1]:=convert(a[1]^3, string):
s[2]:=cat(s[1], convert(a[2]^3, string)):
for n from 3 to M do
a[n] := parse(s[n-1])/a[n-1];
s[n]:= cat(s[n-1], convert(a[n]^3, string));
end do:
seq(a[n], n = 1..M);
CROSSREFS
Sequence in context: A208207 A229050 A221177 * A271081 A005167 A208213
KEYWORD
nonn,easy,base
AUTHOR
Peter Bala, Nov 29 2010
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 25 07:41 EDT 2024. Contains 371964 sequences. (Running on oeis4.)