[go: up one dir, main page]

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!)
Search: a082675 -id:a082675
Displaying 1-1 of 1 result found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A082674 Constant term when a polynomial of degree n is fitted to the lower members of the first n+1 twin prime pairs. +10
2
1, 5, 9, 19, 41, 87, 187, 425, 1041, 2689, 7031, 18015, 44503, 105503, 240267, 527035, 1116023, 2283321, 4509661, 8574251, 15613035, 26989459, 43596473, 63714861, 77517775, 54160583, -87072621, -539390369, -1742001769, -4661299497 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = A082675(n) - 2.
EXAMPLE
A 5th-degree polynomial through the 6 points (1, 3), (2, 5), (3, 11), (4, 17), (5, 29), (6, 41) has constant term 41.
MAPLE
A088460 := proc(n) local i, p ; i := 1 ; p := 0 ; while true do while ithprime(i+1)-ithprime(i) <> 2 do i := i+1 ; od ; p := p+1 ; if p = n then RETURN( ithprime(i) ) ; fi ; i := i+1 ; od ; end: A082674 := proc(n) local rhs, co, row, col; rhs := linalg[vector](n+1) ; co := linalg[matrix](n+1, n+1) ; for row from 1 to n+1 do rhs[row] := A088460(row) ; for col from 1 to n+1 do co[row, col] := row^(col-1) ; od ; od ; linalg[linsolve](co, rhs)[1] ; end: for n from 1 to 30 do printf("%d, ", A082674(n)) ; od ; # R. J. Mathar, Oct 31 2006
CROSSREFS
KEYWORD
easy,sign
AUTHOR
Cino Hilliard, May 19 2003
EXTENSIONS
Corrected and extended by R. J. Mathar, Oct 31 2006
STATUS
approved
page 1

Search completed in 0.008 seconds

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 August 29 15:03 EDT 2024. Contains 375517 sequences. (Running on oeis4.)