1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/// Calculates the nth stella octangula number.
///
/// # Arguments
///
/// * `n` - A non-negative integer representing the position in the stella octangula sequence.
///
/// # Returns
///
/// The nth stella octangula number.
///
/// # Examples
///
/// ```
/// use numberlab::figurate::stella_octangula::nth_stella_octangula;
///
/// let result = nth_stella_octangula(10);
/// assert_eq!(result, 1990);
/// ```
/// Generates a sequence of stella octangula numbers up to the given number `n`.
///
/// # Arguments
///
/// * `n` - A non-negative integer representing the number of terms in the stella octangula sequence.
///
/// # Returns
///
/// A vector containing the stella octangula sequence up to the given number `n`.
///
/// # Examples
///
/// ```
/// use numberlab::figurate::stella_octangula::stella_octangula_sequence;
///
/// let sequence = stella_octangula_sequence(5);
/// assert_eq!(sequence, vec![0, 1, 14, 51, 124]);
/// ```