FUNCTION
Bernoulli_A
Calculates array of Bernoulli numbers using recurrent relations.
You're viewing an older version of this page (#81). View the current version.
Interface
#include <codecogs/maths/discrete/number_theory/bernoulli_a.h>
using namespace Maths::Discrete::Number_Theory;
Given starting values with indices 0 and 1, this function calculates all numbers with indices up to some maximal index. The relations used are as follows:
(1)
(2)
(3)
(4)
(5)
First numbers are:
(6)
References
- Higher Transcendental Functions, vol.1, (1.13) by H.Bateman and A.Erdelyi (Bateman Manuscript Project), 1953
- M.Abramowitz and I.A.Stegun, Handbook of Mathematical Functions, 1964 chapt.23
- Yu.Luke, Mathematical functions and their approximations, 1975 chapt.14.2
Example 1
#include <stdio.h>
#include <codecogs/maths/discrete/number_theory/bernoulli_a.h>
#define MAX_INDEX 16
int main()
{
double dBernoulli[MAX_INDEX+1];
printf( "%8s%2c%20s\n", " ", 'n', "Bn" );
printf( "%8s", " " );
for(int i = 0; i < 22; i++ )
printf( "%c", '-' );
printf( "\n" );
Maths::Discrete::NumberTheory::bernoulli_A( MAX_INDEX, dBernoulli );
printf( "%10d%20.12f\n", 0, dBernoulli[0] );
printf( "%10d%20.12f\n", 1, dBernoulli[1] );
for(int i = 2; i <= MAX_INDEX; i += 2 )
printf( "%10d%20.12f\n", i, dBernoulli[i] );
return 0;
}Output:
n Bn
----------------------
0 1.000000000000
1 -0.500000000000
2 0.166666666667
4 -0.033333333333
6 0.023809523810
8 -0.033333333333
10 0.075757575758
12 -0.253113553114
14 1.166666666667
16 -7.092156862745Parameters
iMax
input maximal index requested
dB
output pointer to the array of numbers declared in the calling module. Array dimension should be iMax+1 or greater
This function's source code is only visible to registered users — documentation and the calculator above are free to use either way. Sign in to see it.