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!)
A067859 a(1) = 1; a(n+1) = floor(sqrt(Sum_{k=1..n} a(k)^2)). 0
1, 1, 1, 1, 2, 2, 3, 4, 6, 8, 11, 16, 22, 31, 44, 62, 87, 123, 174, 246, 348, 492, 695, 983, 1390, 1966, 2780, 3931, 5559, 7862, 11118, 15723, 22236, 31446, 44471, 62892, 88942, 125783, 177884, 251566, 355768, 503132, 711536, 1006263, 1423071, 2012526, 2846142 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
EXAMPLE
a(6) = floor(sqrt(1^2 + 1^2 + 1^2 + 1^2 + 2^2)) = floor(sqrt(8)) = 2.
MAPLE
a:= proc(n) option remember; `if`(n=1, 1,
floor(sqrt(add(a(k)^2, k=1..n-1))))
end:
seq(a(n), n=1..60); # Alois P. Heinz, Aug 03 2018
CROSSREFS
Sequence in context: A173508 A103632 A214076 * A006207 A318403 A362048
KEYWORD
easy,nonn
AUTHOR
Leroy Quet, Feb 15 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 April 19 16:38 EDT 2024. Contains 371794 sequences. (Running on oeis4.)